Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
97
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) / 1.8;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement