中国大学MOOC: typeof undefined 结果返回 undefined
举一反三
- 中国大学MOOC:typeofundefined结果返回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
- 在javascript中,执行结果正确的是: A: typeof(null)的结果为null B: typeof(typeof(5))的结果为"string" C: typeof(5)的结果为Number D: typeof(typeof(undefined))的结果为undefined
- 【单选题】以下代码会在控制台里打印什么结果? var str = String(undefined); console.log(str); console.log(typeof str); A. undefined string B. undefined undefined C. string string D. string undefined
- 以下语句的输出结果为 A: null B: undefined C: object D: typeof(a)