setIntervavl( )方法与setTimeout( )方法区别在于()。
A. setIntervavl( )方法用于每隔一定时间重复执行一个函数,而setTimeout( )方法用于一定时间之后只执行一次函数
B. setTimeout( )方法需要浏览者终止定时,而setIntervavl( )方法不用这样
C. setIntervavl( )方法用于每隔一定时间闪过一条广告,而setTimeout( )方法则很自由
D. 两者功能不一样
String对象的方法不包括()。
A. charAt( )
B. substring( )
C. toLowerCase( )
D. length( )
以下表达式产生一个0~7之间(含0,7)的随机整数的是()。
A. Math.floor(Math.random()*6)
B. Math.floor(Math.random()*7)
C. Math. floor(Math.random()*8)
D. Math.ceil(Math.random()*8)
对字符串str=”welcome to china”进行下列操作处理,描述结果正确的是()。
A. str.substring(1,5)返回值是“elcom”
B. str.length的返回值是16
C. str.indexOf(“come”,4)的返回值是4
D. str.toUpperCase()的返回值是“Welcome To China”