分析下面的JavaScript代码段,输出结果是( )var mystring="I am a student";a=mystring.charAt(9);console.log(a);
A: I am a st
B: u
C: t
D: udent
A: I am a st
B: u
C: t
D: udent
B
本题目来自[网课答案]本页地址:https://www.wkda.cn/ask/mpyzoytjzttxzzo.html
举一反三
- 分析下面的JavaScript代码段,输出结果是( )var mystring=”I am a student”;a=mystring.charAt(9);document.write(a); A: I an a st B: u C: udent D: t
- 分析下面的Javascript代码段,输出结果是() var mystring=”I am a student”; var a=mystring.substring(9,13); document.write(a); A: stud B: tuden C: uden D: udent
- 分析下面的Javascript代码段,输出结果是() var mystring=”I am a student”; var a=mystring.substring(9,13); document.write(a);
- 分析下面的javaScript代码段,输出结果是( )[br][/br]var mystring=”I am a student”;[br][/br]a=mystring.substring(9,13);[br][/br]document.write(a) A: stud B: tuden C: uden D: udent
- 分析下面的JavaScript代码段,输出结果是() var str="I am a teacher"; a=str.charAt(9); document.write(a); A: I am a te B: a C: acher D: e
内容
- 0
中国大学MOOC: 分析下面的JavaScript代码段,输出结果是()。 var str=I am a teacher; a=str.charAt(9); document.write(a);
- 1
分析下面的JavaScript代码,输出的结果是( )。var mystr = “I am a student.”;var a = mystr.substring(9,13);document.write(a); A: uden B: stud C: tuden D: udent
- 2
在javascript中,执行下列代码输出的结果是(): for(var i=0;i<4;i++){ console.log(i) } console.log(i)
- 3
下面语句的输出结果( )。<?php$str1="I am student ";$str2="Lily";$str3=str_replace("student",$str2,$str1)echo $str3;?> A: I am student B: I am Lily C: Lily am student D: I am student Lily
- 4
已知s1="I "am a student.",s2='I \'am a student',则print(s1,s2)的输出结果为( ) A: I 'am a student. I 'am a student B: I "am a student. I 'am a student C: I "am a student. I \'am a student D: 程序报错