Guest User

Untitled

a guest
Jul 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. function celsToFahr(celsTemp) {
  2. return celsTemp * 1.8 + 32;
  3. }
  4.  
  5. function fahrToCels(fahrTemp) {
  6. return (fahrTemp - 32) * 0.56;
  7. }
Add Comment
Please, Sign In to add comment