/**
* Part 4
*
* write a function the returns a FizzBuzz string for some number N (counting up from 1).
* - for every number that isn't a multiple of 3 or 5, return a period "."
* - for every number that is a multiple of 3 (but not 5), return "fizz"
* - for every number that is a multiple of 5 (but not 3), return "buzz"
* - for every number that is a multiple of 3 and 5, return "fizzbuzz"
*/
function fizzbuzz(N){
// YOUR CODE HERE
}
console.assert(fizzbuzz(1) === ".")
console.assert(fizzbuzz(2) === "..")
console.assert(fizzbuzz(3) === "..fizz")
console.assert(fizzbuzz(5) === "..fizz.buzz")
console.assert(fizzbuzz(10) === "..fizz.buzzfizz..fizzfizzbuzz")
J._1 0 Newbie Poster
hericles 289 Master Poster Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.