单项选择题

for(var i=1;i<10;i++){
if(i%3==0 || i%5==0){
continue;
}
console.log(i);
}以上代码的打印结果是()

A.1,2
B.1,2,3,7,8,9
C.1,2,4,6,7,8,9
D.1,2,4,7,8