Fizz Buzz

Size
1,458 Kb
Views
60,720

How do I make an fizz buzz?

Fizz Buzz Challenge. What is a fizz buzz? How do you make a fizz buzz? This script and codes were developed by Elia Rodriguez on 03 July 2022, Sunday.

Fizz Buzz Previews

Fizz Buzz - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Fizz Buzz</title>
</head>
<body> <script src="js/index.js"></script>
</body>
</html>

Fizz Buzz - Script Codes JS Codes

//use console.log to print all numbers from 1 - 100
for (var i = 1; i <= 100; i++) { if (i % 3 === 0) { console.log("Fizz"); } else if (i % 5 === 0) { console.log("Buzz"); } else if ((i % 3 === 0) && (i % 5 === 0)) { console.log("FizzBuzz"); } else { console.log(i) }
}
Fizz Buzz - Script Codes
Fizz Buzz - Script Codes
Home Page Home
Developer Elia Rodriguez
Username lostkitten
Uploaded July 03, 2022
Rating 3
Size 1,458 Kb
Views 60,720
Do you need developer help for Fizz Buzz?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Elia Rodriguez (lostkitten) Script Codes
Create amazing blog posts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!