Skip to content

Instantly share code, notes, and snippets.

@cfsanderson
Last active April 13, 2017 00:56
Show Gist options
  • Save cfsanderson/3c3daee68516f40dad459201c6e54712 to your computer and use it in GitHub Desktop.
Save cfsanderson/3c3daee68516f40dad459201c6e54712 to your computer and use it in GitHub Desktop.
Week 2, Day 1 essay for FEE cohort 6

FizzBuzz

for (let i = 1; i <= 100; i++) {
  if (i % 3 === 0 && i % 5 === 0) {
    console.log('fizzbuzz')
  } else if (i % 5 === 0) {
    console.log('buzz')
  } else if (i % 3 === 0) {
    console.log('fizz')
  } else {
    console.log(i)
  }
}

This was the fizzbuzz solution for the mock interview week at TIY.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment