Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save SuperSharkBoiii/157f96c0ee905035584faf8aff806925 to your computer and use it in GitHub Desktop.
Save SuperSharkBoiii/157f96c0ee905035584faf8aff806925 to your computer and use it in GitHub Desktop.
function fizzBuzz(start, end, skip){
let myArray = [];
for(let i = start;i < end+1; i++){
if (i != skip){
myArray.push(i);
}
}
return myArray;
}
// DON'T EDIT THE LINE BELOW THIS COMMENT
module.exports = fizzBuzz;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment