Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created January 7, 2016 12:29
Show Gist options
  • Save codecademydev/5a11ae9cc9b1d2ee836d to your computer and use it in GitHub Desktop.
Save codecademydev/5a11ae9cc9b1d2ee836d to your computer and use it in GitHub Desktop.
Codecademy export
// Define quarter here.
var quarter = function (number) {
number/4;}
if (quarter() % 3 === 0 ) {
console.log("The statement is true");
} else {
console.log("The statement is false");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment