typeof NaN,typeof Array的结果分别是(), “object”。

题目
填空题
typeof NaN,typeof Array的结果分别是(), “object”。
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

对于这样的一个枚举类型:

enum Color:byte{

Red,

Green,

Blue,

Orange

}

string[] ss=Enum.GetNames(typeof(Color));

byte[] bb=Enum.GetValues(typeof(Color));

试写一段程序显示出枚举类型中定义的所有符号名称以及它们对应的数值。


正确答案:
 

第2题:

用来计算一个变量或者一个常量、一种数据类型所占的内存字节数可使用()

  • A、typeof()
  • B、sizeof()
  • C、length()
  • D、longof()

正确答案:B

第3题:

设”varvarc=2008;”,则执行完语句document.write(typeof(d));后,输出结果是()。

A.number

B.string

C.object

D.undefined


正确答案:D

第4题:

有一个变量var a=typeof string + 100+50 + NaN,以下哪个是alert(a)的结果?()

  • A、function150NaN
  • B、function10050NaN
  • C、undefined10050NaN
  • D、NaN

正确答案:C

第5题:

typeof NaN,typeof Array的结果分别是(), “object”。


正确答案:”number”

第6题:

请选择结果为真的表达式:( )

A. typeof null !="object"

B. null === undefined

C. 1 == " 01.00"

D. NaN == NaN


正确答案:C

第7题:

Javascript中, 以下代码运行后变量y的值是:() var x = [‘abcde’ , 123456]; var y = typeof typeof x[1];

  • A、"function"
  • B、"object"
  • C、"number"
  • D、"string"

正确答案:D

第8题:

YouaredevelopingaAsp.netwebapplicationthtincludesapanelcontrolthathasIDcontentsection.YouneedtoaddatextBoxcontroltothepanelcontrol.()

A.this.RequireControlState(this.LoadControl(typeof(TextBox),null));

B.this.ContentSection.control.add(this.FindControl(ContentSection.ID+"asp:TextBox"));

C.this.ContentSection.control.add(this.LoadControl(typeof(TextBox),null));

D.this.LoadComplete("asp:TextBox").IntiantiateIn(ContentSection)


参考答案:C

第9题:

以下Actionscript功能哪些不能在Flash4播放器文件中使用()

  • A、rseint
  • B、isnan
  • C、printasbitmap
  • D、typeof

正确答案:A,B,C,D

第10题:

Javascript中,以下代码运行后变量y的值是:() var x = [typeof x, typeof y][1]; var y = typeof typeof x;

  • A、"number"
  • B、"string"
  • C、"undefined"
  • D、"object"

正确答案:B

更多相关问题