在JavaScript中,运行下面代码后的返回值是( )var a=null;(typeof(a));
A: object
B: null
C: string
D: undefined
A: object
B: null
C: string
D: undefined
举一反三
- 在javascript中,执行结果正确的是: A: typeof(null)的结果为null B: typeof(typeof(5))的结果为"string" C: typeof(5)的结果为Number D: typeof(typeof(undefined))的结果为undefined
- var x1 = null,x2= Infinity ,x3 =NaN; document.write(typeof(x1) ); document.write(typeof(x2) ); document.write(typeof(x3) ); A: undefined,number,undefined B: undefined,number,object C: object,undefined,undefined D: objec ,number,numbe
- typeof(null)的检测结果是() A: null B: undefined C: object D: function
- Javascript中, 以下代码运行后变量y的值是:( ) var x = [ 'abcde', 123456]; var y=typeof x[1] ; A: function B: Object C: numbe D: String
- 在JavaScript语法中,下列说法不正确的是( ) A: typeof(43.12)返回值为numbe B: typeof(nudefined)返回值为nudefined C: typeof(true)返回值为boolean D: typeof(null)返回值为null