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
- Host: GitHub
- URL: https://github.com/yudis-bit/cmlabs-backend-internship-test
- Owner: Yudis-bit
- Created: 2024-08-22T04:24:53.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-22T04:40:57.000Z (almost 2 years ago)
- Last Synced: 2025-07-21T10:33:40.072Z (11 months ago)
- Topics: backend-development, coding-challenge, internship-task, javascript
- Language: JavaScript
- Homepage:
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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