Menu
Coddy logo textTech

Game Overview

Part of the Fundamentals section of Coddy's JavaScript journey — lesson 53 of 77.

challenge icon

Challenge

Easy

FizzBuzz is a simple and classic programming game often used to teach basic logic and control flow. The game involves iterating through numbers from 1 up to a specified limit. For each number:

  • If the number is divisible by 3, the program outputs "Fizz."
  • If the number is divisible by 7, it outputs "Buzz."
  • If the number is divisible by both 3 and 7, it outputs "FizzBuzz."
  • Otherwise, it simply outputs the number.

Let's start with a simple welcome message.

You are given the input this program needs: num

For starters, just output the welcome message:

Welcome to FizzBuzz!

Try it yourself

let num = parseInt(inp); // Don't change this line

// Type your code below

All lessons in Fundamentals