Advertisement
Spocoman

03. Celsius to Fahrenheit

Dec 8th, 2021
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function celsiusToFahrenheit(celsius) {
  2.  
  3.     let fahrenheit = parseFloat(celsius[0]) * 1.800 + 32;
  4.     console.log(`${fahrenheit.toFixed(2)}`)
  5.  
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement