Skip to content

Instantly share code, notes, and snippets.

@Itsdenty
Created May 20, 2016 17:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Itsdenty/7c9dbe9d42fe1c607530c2a338e77ebf to your computer and use it in GitHub Desktop.
Save Itsdenty/7c9dbe9d42fe1c607530c2a338e77ebf to your computer and use it in GitHub Desktop.
the assignment on feet to centimeter
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