有关JavaScript的问题

1.写出一个求数组b=[1,2,3,4,5,6]长度的语句?2.一个数组a=[1,2,3,4,5,6,7],可以索引第四个元素吗?如果可以,值是什么3.Name=’stu... 1.写出一个求数组b = [1, 2, 3,4,5,6] 长度的语句?
2.一个数组 a = [1, 2, 3, 4, 5, 6, 7],可以索引第四个元素吗?如果可以, 值是什么
3.Name=’student’ 是什么数据类型(2分)

4.let name = 'I am immutable';
let upName = name.toLowerCase();
输出什么(4分)?

5.let friends = ['Mike', 'Jim', 'Ben'];
console.log(friends.indexOf('Ben'));
输出什么(4分)?

6.let numArr = [ 1, 2, 15 ];
numArr.sort();
console.log(numArr);
输出什么(3分)

7.["Bilbo", "Gandalf", "Nazgul"].forEach( item => console.log(item.toUpperCase()) );
输出什么

8.console.log(4 + '2');输出什么

9.console.log(2 - '2'); 输出什么

10.let fruits = ["boys", "grils", "children"];
// 遍历所有元素
for(let fruit of fruits) {
console.log( fruit );
}
输出什么?
展开
 我来答
弯冬掰不直
2017-12-07 · TA获得超过915个赞
知道小有建树答主
回答量:421
采纳率:88%
帮助的人:94.2万
展开全部

let b = [1, 2, 3, 4, 5, 6];
console.log("第1题答案:", b.length);
let a = [1, 2, 3, 4, 5, 6, 7];
console.log("第2题答案:", a[4 - 1]);
let Name = 'student'
console.log("第3题答案:", typeof Name);
let name = 'I am immutable';
let upName = name.toLowerCase();
console.log("第4题答案:", upName);
let friends = ['Mike', 'Jim', 'Ben'];
console.log("第5题答案:", friends.indexOf('Ben'));
let numArr = [1, 2, 15];
numArr.sort();
console.log("第6题答案:", numArr);
let array = ["Bilbo", "Gandalf", "Nazgul"]
console.log("第7题答案:");
array.forEach(item => console.log(item.toUpperCase()));
console.log("第8题答案:", 4 + '2');
console.log("第9题答案:", 2 - '2');
console.log("第10题答案:");
let fruits = ["boys", "grils", "children"];
for (let fruit of fruits) {
console.log(fruit);
}

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式