fizzbuzz js
function fizzBuzz2(n) {
for (let i = 1; i <= n; i++) {
let str = "";
if (i % 3 === 0) str += "fizz"
if (i % 5 === 0) str += "buzz"
if (str === "") str = i;
console.log(str);
}
}
var output = [];
var count = 1;
function fizzBuzz(){
if (count % 3 === 0 && count % 5 === 0){
output.push("fizzBuzz");
} else if (count % 3 === 0) {
output.push("fizz");
} else if (count % 5 === 0) {
output.push("Buzz");
}
else {
output.push(count);
}
count++;
}
console.log(output);function fizzbuzz(maxNum){
for(i=1;i<=maxNum;i++){
result = '';
if(i%3===0)(result+='fizz');
if(i%5===0)(result+='buzz');
if(result==''){
console.log(i);
}else{
console.log(result)
}
}
}
fizzbuzz(100);for (var i=1; i < 101; i++){ if (i % 15 == 0) console.log("FizzBuzz"); else if (i % 3 == 0) console.log("Fizz"); else if (i % 5 == 0) console.log("Buzz"); else console.log(i);}// This is the most compact one I could make
for (let i = 1; i < 101; i++) console.log((i % 3 ? "" : "fizz") + (i % 5 ? "" : "buzz"));
Also in JavaScript:
- node sass
- javascript variable shortcuts
- Returning Boolean Values from Functions
- javascript array map stack
- email validation in javascript
- object json parse nestjs
- check object has key javascript
- javascript for loop that prints 10 times
- object get property with max value javascript
- include other js files in a js file
- cdnjs smeantic ui
- port 3000 is already in use nodemon app crashed
- chunks bug vue js
- validate email jquery
- js generate random list of names with for loop
- high level components react
- javascript collision detection
- open pdf in new tab javascript
- total cost example in javascript with function
- get installed plugins in a browser via javascript
- find length of longest string in array javascript
- javascript run function once
- nodejs hello world
- node js request