"# fizzbuzz"
This is a little excersice to some job aplications, it's realized whit JavaScript, using Jest (and Node) for automatize testing. On CMD o VSCode Terminal execute "npm test". If u run correctly, u should see this on screen:β should print 1 if receive 1 (2 ms).
β should print fizz if receive 3.
β should print fizz if receive a multiple of 3 (1 ms).
β should print fizz if receive 5.
β should print buzz if receive a multiple of 5.
β should print fizzbuzz if receive a multiple of 3 and 5 (1 ms).