(难度:中等)JavaScript基本数据类型有null、undefined、string、number、boolean
(难度:中等)JavaScript基本数据类型有null、undefined、string、number、boolean
相关考题:
Javascript中,以下代码运行后变量y的值是:()varx=[typeofx,typeofy][1];vary=typeoftypeofx; A、“number“B、“string“C、“undefined“D、“object“
在个人geodatabase中,下列哪种字段类型是有效的?()A、boolean、string、blob、singleB、string、text、guid、longrawC、data、blob、raster、floatD、double、boolean、binary、number
Javascript中,以下哪两个变量的值不是==:()。A、var a=0 , b=-0;B、var a=NaN , b=NaN;C、var a=null , b=undefined;D、var a=[] , b=false;
Javascript中,以下代码运行后变量y的值是:() var x = [typeof x, typeof y][1]; var y = typeof typeof x;A、"number"B、"string"C、"undefined"D、"object"
JavaScript的原始数据类型中null和undefined的共同点是()。A、都是原始类型,保存在变量本地B、都可以表示变量声明过但未被赋值,是所有未赋值变量的默认值C、都可以表示变量不再指向任何对象地址D、都是引用类型,值不保存在变量本地的数据类型
String foo = “blue”; Boolean[]bar = new Boolean [1]; if (bar[0]) { foo = “green”; } What is the result? () A、 Foo has the value of “”B、 Foo has the value of null.C、 Foo has the value of “blue”D、 Foo has the value of “green”E、 An exception is thrown.F、 The code will not compile.
单选题Javascript中,以下哪两个变量的值不是==:()。Avar a=0 , b=-0;Bvar a=NaN , b=NaN;Cvar a=null , b=undefined;Dvar a=[] , b=false;
单选题Javascript中,以下哪两个变量的值不是==:()。Avar a=0 , b=-0;Bvar a=NaN , b=NaN;Cvar a=null , b=undefined;Dvar a=[] , b=false;
单选题JavaScript的原始数据类型中null和undefined的共同点是()。A都是原始类型,保存在变量本地B都可以表示变量声明过但未被赋值,是所有未赋值变量的默认值C都可以表示变量不再指向任何对象地址D都是引用类型,值不保存在变量本地的数据类型
( 难度:中等)Javascript 中, 以下那两个变量的值不是==:()A.var a=0 , b=-0;B.var a=NaN , b=NaN;C.var a=null ,b=undefined;D.var a=[] , b=false;
(难度:中等)基本数据类型存储在堆中