Created
September 24, 2024 13:53
-
-
Save alifma/643a634172cd2d3b7b4692ee7c7fab59 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fizzBuzz(n) { | |
// implementasi | |
} | |
fizzBuzz(15); | |
// output: | |
// 1 | |
// 2 | |
// Fizz | |
// 4 | |
// Buzz | |
// Fizz | |
// 7 | |
// 8 | |
// Fizz | |
// Buzz | |
// 11 | |
// Fizz | |
// 13 | |
// 14 | |
// FizzBuzz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment