代码:’abcdefg’.indexOf(’D’)结果是()。A、4B、3C、-1D、0
代码:’abcdefg’.indexOf(’D’)结果是()。
- A、4
- B、3
- C、-1
- D、0
相关考题:
在JavaScript中,执行下面的代码后,num的值是( ).var str = "xiao.li@gmail.com";var num = str.indexOf("."); A.-1B.0C.4D.13
下面这段代码中,变量myInteger的结果是()。 Dim myString As String="ABCDE" Dim myInteger As Integer myInteger=myString.IndexOf("D")A、0B、1C、2D、3E、4
分析下面的JavaScript代码段: var mystring="I am a student"; a=mystring.indexOf("am"); document.write(a); 输出结果是()。A、3B、4C、2D、1
使用String对象的indexOf()方法查找字符串”helloworld”中是否包含G,下列语句描述正确的是()。A、字符串"helloworld"中不包含G字符,indexOf返回0B、字符串"helloworld"中不包含G字符,indexOf返回nullC、字符串"helloworld"中不包含G字符,indexOf返回-1D、字符串"helloworld"中不包含G字符,indexOf返回1
单选题下面这段代码中,变量myInteger的结果是()。 Dim myString As String="ABCDE" Dim myInteger As Integer myInteger=myString.IndexOf("D")A0B1C2D3E4
单选题分析下面的JavaScript代码段: var mystring="I am a student"; a=mystring.indexOf("am"); document.write(a); 输出结果是()。A3B4C2D1
单选题使用String对象的indexOf()方法查找字符串”helloworld”中是否包含G,下列语句描述正确的是()。A字符串helloworld中不包含G字符,indexOf返回0B字符串helloworld中不包含G字符,indexOf返回nullC字符串helloworld中不包含G字符,indexOf返回-1D字符串helloworld中不包含G字符,indexOf返回1
单选题在ASP中,len(“abcdefg”)函数的结果是?()A“abcdefg”B6CtrueD7