Skip to content

Instantly share code, notes, and snippets.

@rtanubra
Created February 16, 2019 00:01
Show Gist options
  • Save rtanubra/5ea2f93896fdcedba8b0edaf9dfd793a to your computer and use it in GitHub Desktop.
Save rtanubra/5ea2f93896fdcedba8b0edaf9dfd793a to your computer and use it in GitHub Desktop.
Module 4 Checkpoint 6
function computeArea(width, height) {
return width * height;
}
function celsToFahr(celsTemp) {
return celsTemp *9/5+32
}
function fahrToCels(fahrTemp) {
return (fahrTemp-32)*5/9
}
function isDivisible(divisee, divisor) {
return divisee % divisor === 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment