i think there’s an error with this test
Failed:multiplesOf3Or5(1000)
should return 233168.
it should return 234168 not 233168
please review and fix it
my code
function multiplesOf3Or5(number) {
let sum = 0
for(let i =3;i<=number;i++){
if(i%3==0||i%5==0){
sum += i
}
}
return sum;
}