-
[EN] FizzBuzz is a technical test for backend (JavaScript) programmer position. This test is applied in many companies when they do interviews
It consists of writing a program that displays the numbers from 1 to 100 on the screen, substituting the multiples of 3 for the word "fizz", the multiples of 5 for "buzz" and the multiples of both, that is, the multiples of 3 and 5, for the word "fizzbuzz"
(Includes test with jest framework)
============================================================================
-
[ES] FizzBuzz es una prueba técnica para la posición de programador backend (JavaScript). Esta prueba se aplica en muchas empresas cuando hacen entrevistas.
Consiste en escribir un programa que muestre en pantalla los números del 1 al 100, sustituyendo los múltiplos de 3 por la palabra “fizz”, los múltiplos de 5 por “buzz” y los múltiplos de ambos, es decir, los múltiplos de 3 y 5, por la palabra “fizzbuzz”
(Incluye prueba con el framework jest)
============================================================================
NPM Commands:
- npm init
- npm i -D jest
- npm run test:watch
Run FizzBuzz
- node fizzbuzz
- node .