Working from home
"Best known for defying the gods by stealing fire from them and giving it to humanity in the form of technology, knowledge, and more generally, civilization."
- United States
- https://www.alexsemantics.com
Block or Report
Block or report imthatalex
Report abuse
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusePinned
-
1
function FizzBuzz(counter, fizz, buzz){
2for(let i=1;i<counter+1;i++){
3if (!(i % fizz == 0 || i % buzz == 0)) console.log(i);
4if (i % fizz == 0 && i % buzz == 0) console.log(i + ' ' + "FizzBuzz");
5if (i % fizz == 0) console.log(i + ' ' + "Fizz");
-
-
js-axios-api-account-manager Public
software application that interacts with a database through an API
JavaScript
-
-
-