hi the challenge is:
Use a for loop to go through all numbers from number up to 50 (both inclusive), and check if they are multiples of 3. If they are, print them.
// my code:
for(var number = 42; number <= 50; number ++)
if(number % 3 === 0){
console.log(number);
}
am I doing wrong the seek for the multiple of 3? I don't see why?
tos