Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created September 23, 2020 20:35
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 codecademydev/768565b75ae034ffa078f3fc40ddda94 to your computer and use it in GitHub Desktop.
Save codecademydev/768565b75ae034ffa078f3fc40ddda94 to your computer and use it in GitHub Desktop.
Codecademy export
const numImaginaryFriends = totalFriends => Math.round(totalFriends * .33)
console.log(numImaginaryFriends(8));
/*
// As a function declaration:
function numImaginaryFriends(totalFriends) {
return Math.round(totalFriends * .33)
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment