有关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 );
}
输出什么? 展开
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 );
}
输出什么? 展开
1个回答
展开全部
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);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询