你爱上一匹野马,可惜你没有草原,留不住就是留不住,别说不想要,得不到就是得不到,别说不稀罕

2022年9月6日

摘要: 1. at()方法 Array.prototype.at() at() 方法接收一个整数值并返回该索引的项目,允许正数和负数。负整数从数组中的最后一个项目开始倒数。 const array1 = [5, 12, 8, 130, 44]; let index = 2; console.log(arra 阅读全文
posted @ 2022-09-06 19:59 ruby_s 阅读(94) 评论(0) 推荐(0) 编辑
 
摘要: //测试数组中,书否含有某个值const array = [1, 2, 3, 4, 5]; const data=4const qq=array.some(item=>{ return item data})console.log(qq);// expected output: true 阅读全文
posted @ 2022-09-06 18:42 ruby_s 阅读(71) 评论(0) 推荐(0) 编辑