Skip to content

Instantly share code, notes, and snippets.

@fallsimply
Created February 20, 2018 02:40
Show Gist options
  • Save fallsimply/ca22a014131789b7e95e90398a8433b7 to your computer and use it in GitHub Desktop.
Save fallsimply/ca22a014131789b7e95e90398a8433b7 to your computer and use it in GitHub Desktop.
let i = 1
let arr = [3, 5]
while( i <= 30) {
if( i % arr[0] * arr[1] == 0 ){
console.log('fizz buzz ')
}
else if ( i % arr[0] == 0) {
console.log('fizz ')
}
else if ( i % arr[1] == 0) {
console.log('buzz ')
}
else {
console.log(i + ' ')
}
i++
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment