下面代码的输出结果是( )for(var i=1; i<=6; i++) {if( i % 3 == 0){ continue; }console.log( i);} A.
分别输出1、2、4、5 B.
分别输出3、6 C.
分别输出1、2、3、4、5、6 D.
分别输出1、2