Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created September 4, 2020 08:58
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/a078a8b7e5c8fdf780605d33ee4edd25 to your computer and use it in GitHub Desktop.
Save codecademydev/a078a8b7e5c8fdf780605d33ee4edd25 to your computer and use it in GitHub Desktop.
Codecademy export
const numImaginaryFriends = totalFriends => Math.round(totalFriends * .33)
const numImaginaryFriends = (value) => Math.round(value / 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment