在JavaScript中,下列关于String对象的charAt()和indexOf()方法理解正确的是()。A、charAt()方法是获取位于指定索引位置的字符B、indexOf()方法是查找字符或字符串的位置,返回字符串出现的所有位置C、charAt()方法的参数可以为一个或两个D、indexOf()方法的参数为指定的索引值
在JavaScript中,下列关于String对象的charAt()和indexOf()方法理解正确的是()。
- A、charAt()方法是获取位于指定索引位置的字符
- B、indexOf()方法是查找字符或字符串的位置,返回字符串出现的所有位置
- C、charAt()方法的参数可以为一个或两个
- D、indexOf()方法的参数为指定的索引值
相关考题:
已知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)
分析下面的JavaScript代码段,输出结果是( )var mystring="I am a student";a=mystring.charAt(9);document.write(a); A.I am a stB.UC.UdentD.T
下列不是 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 date="Today is Sunday.";String str2=data.CharAt(s.length( )-1);则str2为()A、yB、.C、nullD、false
下列关于AJAX说法不正确的是:()A、定义JavaScript函数时可以不写函数名B、定义JavaScript函数要明确返回类型C、JavaScript函数可以返回数组D、Ajax中XMLHttpRequest对象中的open方法第三个参数如果为true表示异步,false为同步
Which methods from the String and StringBuffer classes modify the object on which they are called?() A、The charAt() method of the String class.B、The toUpperCase() method of the String class.C、The replace() method of the String class.D、The reverse() method of the StringBuffer class.E、The length() method of the StringBuffer class.
单选题在JavaScript中,下列关于String对象的charAt()和indexOf()方法理解正确的是()。AcharAt()方法是获取位于指定索引位置的字符BindexOf()方法是查找字符或字符串的位置,返回字符串出现的所有位置CcharAt()方法的参数可以为一个或两个DindexOf()方法的参数为指定的索引值
单选题String date="Today is Sunday.";String str2=data.CharAt(s.length( )-1);则str2为()AyB.CnullDfalse
单选题Which methods from the String and StringBuffer classes modify the object on which they are called?()AThe charAt() method of the String class.BThe toUpperCase() method of the String class.CThe replace() method of the String class.DThe reverse() method of the StringBuffer class.EThe length() method of the StringBuffer class.
问答题简述在JavaScript中,可以使用哪些对象?