Skip to content

Instantly share code, notes, and snippets.

@anxhe
Created February 8, 2018 14:31
Show Gist options
  • Save anxhe/1f8011cb37c7fecddff05814fbd758e1 to your computer and use it in GitHub Desktop.
Save anxhe/1f8011cb37c7fecddff05814fbd758e1 to your computer and use it in GitHub Desktop.
const fizzBuzzToN = (n) => {
let array = []
for ( let i = 1; i <= n ; i++){
if ( i % 3 === 0 && i % 5 === 0) {
array.push("FizzBuzz")
}
else if ( i % 3 === 0) {
array.push("Fizz")
}
else if (i % 5 === 0){
array.push("Buzz")
}
else {
array.push(i)
}
}
return array
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment