JSFiddle - React, Tailwind, and code Playground
by Jake Overall
JavaScript
/*
write a loop that will print the numbers 10 - 100 in multiples of 10
ie. 10 20 30 40...
*/
var i = 10;
while(i <= 100){
console.log(i);
i+=10;
};
by Jake Overall
/*
write a loop that will print the numbers 10 - 100 in multiples of 10
ie. 10 20 30 40...
*/
var i = 10;
while(i <= 100){
console.log(i);
i+=10;
};