Created
May 20, 2016 17:19
-
-
Save Itsdenty/7c9dbe9d42fe1c607530c2a338e77ebf to your computer and use it in GitHub Desktop.
the assignment on feet to centimeter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function toCentimetre(feet) { | |
feet /= 33; | |
var centimetre = feet; | |
return centimetre; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment