Advertisement
Guest User

1. Powerful Cars

a guest
Jul 23rd, 2014
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function convertKWtoHP(value) {
  2.     var hpValue = value / 0.746;
  3.     hpValue = hpValue.toFixed(2);
  4.     return hpValue;
  5. }
  6.  
  7.  
  8.  
  9. console.log(convertKWtoHP(75));
  10. console.log(convertKWtoHP(150));
  11. console.log(convertKWtoHP(1000));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement