多项选择题
A.null B.boolean C.undefined D.string
var x,y=null;console.log(typeofx);console.log(typeofy);...
多项选择题var x,y=null;console.log(typeofx);console.log(typeofy);打印结果分别是()。
A.undefined B.null C.object D.string
ECMAScript中有哪5种基本数据类型()。A.undefinedB.nullC.stringD.numb...
多项选择题ECMAScript中有哪5种基本数据类型()。
A.undefined B.null C.string D.number E.boolean F.default
下列表达式为true的有()。A.isNaN(’123’)B.isNaN(’123a’)C.isNaN(’a1...
多项选择题下列表达式为true的有()。
A.isNaN(’123’) B.isNaN(’123a’) C.isNaN(’a123’) D.isNaN(’abc’)