摘要:
1. at()方法 Array.prototype.at() at() 方法接收一个整数值并返回该索引的项目,允许正数和负数。负整数从数组中的最后一个项目开始倒数。 const array1 = [5, 12, 8, 130, 44]; let index = 2; console.log(arra 阅读全文
2022年9月6日
摘要:
//测试数组中,书否含有某个值const array = [1, 2, 3, 4, 5]; const data=4const qq=array.some(item=>{ return item data})console.log(qq);// expected output: true 阅读全文