Fork
the GitHub repository.git add
,git commit
andgit push
directly on your repository as much you want.- Open an
Pull request
, you must get a green light on the Travis CI server to validate the exercise!
- print
"fizz"
if the integer is a multiple of3
(and not a multiple of5
) - print
"buzz"
if the integer is a multiple of5
(and not a multiple of3
) - print
"fizzbuzz"
if the integer is a multiple of3
and5
- print the
number
if the integer is not a multiple of3
or5
fizzbuzz(2) => 2
fizzbuzz(5) => "buzz"
fizzbuzz(6) => "fizz"
fizzbuzz(11) => 11
fizzbuzz(30) => "fizzbuzz"
May the force be with you 👾 !
Look at: https://github.com/jasmine/jasmine (T.D.D.)