typeof(typeof(5))的结果为string
举一反三
- 在javascript中,执行结果正确的是: A: typeof(null)的结果为null B: typeof(typeof(5))的结果为"string" C: typeof(5)的结果为Number D: typeof(typeof(undefined))的结果为undefined
- typeof(5)的结果为number
- 以下程序的输出结果是什么 document.write(typeof a); A: 报错 B: a C: string' D: undefined'
- 在JavaScript语法中,下列说法不正确的是( ) A: typeof(43.12)返回值为numbe B: typeof(nudefined)返回值为nudefined C: typeof(true)返回值为boolean D: typeof(null)返回值为null
- var x1 = null,x2= Infinity ,x3 =NaN; document.write(typeof(x1) ); document.write(typeof(x2) ); document.write(typeof(x3) );