Advertisement
DJ_Zoning

Console Input

Jul 15th, 2014
478
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function convertKWtoHP(value) {
  2.     var result = value / 0.745699872;
  3.     return result;
  4. }
  5. console.log(convertKWtoHP(10));
  6. process.stdin.setEncoding('utf8');
  7.  
  8. process.stdin.on('readable', function () {
  9.   var chunk = process.stdin.read();
  10.   if (chunk !== null) {
  11.      
  12.       console.log(convertKWtoHP(chunk));
  13.       process.exit();
  14.   }
  15.  
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement