An open API service indexing awesome lists of open source software.

https://github.com/yudis-bit/cmlabs-backend-internship-test

Solutions for cmlabs Backend Developer Internship Practical Tasks
https://github.com/yudis-bit/cmlabs-backend-internship-test

backend-development coding-challenge internship-task javascript

Last synced: 11 months ago
JSON representation

Solutions for cmlabs Backend Developer Internship Practical Tasks

Awesome Lists containing this project

README

          

# cmlabs-backend-internship-test

This repository contains the solutions for the cmlabs Backend Developer Internship Practical Tasks.

## Task Overview

### 1. FizzBuzz
- **Objective:** Implement a loop that prints numbers from 1 to 100. For multiples of 3, print "Fizz", for multiples of 5, print "Buzz", and for multiples of both 3 and 5, print "FizzBuzz".
- **Solution:** Implemented in JavaScript in the file `fizzbuzz-test.js`.

## How to Run
To execute the solution, simply run the following command in your terminal:

```bash
node fizzbuzz-test.js