Skip to content

Instantly share code, notes, and snippets.

@yurimorales
Last active February 17, 2025 19:32
Show Gist options
  • Save yurimorales/529da05c834a36096ed2cc5097097813 to your computer and use it in GitHub Desktop.
Save yurimorales/529da05c834a36096ed2cc5097097813 to your computer and use it in GitHub Desktop.
Map Array to FizzBuzz test Javascript
const numbers = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15];
const fizzBuzz = (x) => {
if (x % 15 == 0) {
return 'FizzBuzz';
} else if(x % 5 == 0) {
return 'Buzz';
} else if(x % 3 == 0) {
return 'Fizz';
} else {
return '';
}
};
const results = numbers.map(fizzBuzz);
console.log(results);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment