单选题在JavaScript中,下列关于String对象的charAt()和indexOf()方法理解正确的是()。AcharAt()方法是获取位于指定索引位置的字符BindexOf()方法是查找字符或字符串的位置,返回字符串出现的所有位置CcharAt()方法的参数可以为一个或两个DindexOf()方法的参数为指定的索引值
单选题
在JavaScript中,下列关于String对象的charAt()和indexOf()方法理解正确的是()。
A
charAt()方法是获取位于指定索引位置的字符
B
indexOf()方法是查找字符或字符串的位置,返回字符串出现的所有位置
C
charAt()方法的参数可以为一个或两个
D
indexOf()方法的参数为指定的索引值
参考解析
解析:
暂无解析
相关考题:
在JAVA中,如果要在字符串类型对象S=”JAVA”,中找出字母“v”出现的位置(即位置2),可使用() A.mid(2,s)B.charAt(2)C.s.indexOf(“v”)D.indexOf(s,”v”)
已知String str=new String ("Luck");,则下列关于str的操作中不合法的是( )。A.String s=str. toUpperCase()B.int i=Str. length;C.char s=str. charAt(2);D.String s="Good" +str;
下列方法中,哪个用于实现获取字符在某个字符串中第一次出现的索引?() A.char charAt(int index)B.int indexOf(int ch)C.int lastIndexOf(int ch)D.boolean endsWith(String suffix)
设有定义:Strings=“World”;,下列语句错误的是( )。A、intm=s.indexOf(‘r’);B、charc=s.charAt(0);C、intn=s.length();D、Stringstr=s.append(‘2’);
使用String对象的indexOf()方法查找字符串”helloworld”中是否包含G,下列语句描述正确的是()。A、字符串"helloworld"中不包含G字符,indexOf返回0B、字符串"helloworld"中不包含G字符,indexOf返回nullC、字符串"helloworld"中不包含G字符,indexOf返回-1D、字符串"helloworld"中不包含G字符,indexOf返回1
在Javascript中,对于浏览器对象的层次关系理解正确的是()。A、window对象是所有页面内容的根对象B、document对象包含location对象和history对象C、location对象包含historyD、document对象包含form对象
在Java中,如果要在字符串类型对象s= "java",中找出字母„v‟出现的位置(即位置2),可使用()。 A、mid(2,s);B、charAt(2);C、s.indexOf(’’v’’);D、indexOf(s,’’v’’);
下列不是 String 类的方法的是()A、charAt(int index)B、indexOf(String s)C、beginWith(String s)D、endsWith(String s)
设有定义:String s=“World”;,下列语句错误的是()。A、int m=s.indexOf(‘r’);B、char c=s.charAt(0);C、int n=s.length();D、String str=s.append(‘2’);
关于String和StringBuffer,下面那些是正确的:()A、常量字符串使用String,非常量字符串使用StringBuffer。B、使用StringBuffer的时候设置初始容量。C、尽量使用StringTokenizer代替indexOf()和substring()。D、尽量不要使用StringBuffer,StringTokenizer类。
在JavaScript中,下列关于String对象的charAt()和indexOf()方法理解正确的是()。A、charAt()方法是获取位于指定索引位置的字符B、indexOf()方法是查找字符或字符串的位置,返回字符串出现的所有位置C、charAt()方法的参数可以为一个或两个D、indexOf()方法的参数为指定的索引值
下列关于AJAX说法不正确的是:()A、定义JavaScript函数时可以不写函数名B、定义JavaScript函数要明确返回类型C、JavaScript函数可以返回数组D、Ajax中XMLHttpRequest对象中的open方法第三个参数如果为true表示异步,false为同步
单选题使用String对象的indexOf()方法查找字符串”helloworld”中是否包含G,下列语句描述正确的是()。A字符串helloworld中不包含G字符,indexOf返回0B字符串helloworld中不包含G字符,indexOf返回nullC字符串helloworld中不包含G字符,indexOf返回-1D字符串helloworld中不包含G字符,indexOf返回1
多选题在Javascript中,对于浏览器对象的层次关系理解正确的是()。Awindow对象是所有页面内容的根对象Bdocument对象包含location对象和history对象Clocation对象包含historyDdocument对象包含form对象
单选题设有定义:String s=“World”;,下列语句错误的是()。Aint m=s.indexOf(‘r’);Bchar c=s.charAt(0);Cint n=s.length();DString str=s.append(‘2’);