JS基础测验-2

1.弹出输入框,默认内容是“Hello World”的正确javascript语法是?
A) document.write("HelloWorld")
B) "Hello World"
C) response.write("HelloWorld")
D) prompt(“输入”,"Hello World")

2.下列JS的判断语句中( )是正确的
A)if(i==0)
B)if(i=0)
C)if i==0 then
D)if i=0 then

3、下列的哪一个表达式将返回假
A.!(3<=1)
B.(4>=4)&&(5<=2)
C.(“a”==”a”)&&(“c”!=”d”)
D.(2<3)||(3<2)

4、在HTML页面上编写JavaScript代码时,应编写在()标签中间。
A.
B.
C. 和
D.和

5、JavaScript是一种()语言
A.汇编语言
B.高级语言
C.脚本语言
D.近似语言

6、下列JavaScript表达式当中,错误的是()
A.var tempA, tempB, tempC
B.tempA *= 3
C.tempA >= tempB || tempA <= tempC
D.tempA >= tempB >tempC

7、表达式”This is my”+” book”的结果是()(注:其中,字符T的ASCII码为84,字符b的ASCII码为98)
A.100
B.84his is my 98ook
C.This is my book
D.不能计算,要报错

8、下列名称中,能作为变量名的是()
A.pArray
B.this
C.function
D.*pNumber

var x=1;
x="abc";
x=true;
document.write(typeof x);

结果将显示?( )
A: 语法错误,不会有结果
B: number
C: string
D: boolean

你可能感兴趣的:(JS基础测验-2)