博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JavaScipt30(第七个案例)(主要知识点:数组some,every,findIndex方法)
阅读量:4569 次
发布时间:2019-06-08

本文共 1901 字,大约阅读时间需要 6 分钟。

承接上文,这是第7个案例,这个案例没什么说的,主要有三个注意点:

附上项目链接: 

// 1. slice(begin, end) 如果end被省略,则slice会一直提取到原数组末尾。如果end大于数组长度,slice也会一直提取到原数组末尾。// 2. {isAdult},直接创建了一个对象,他的key是isAdult,value是isAdult的值// 3. new Date()).getFullYear()),我自己写的时候是直接写了2019去计算,还没形成看到日期就用日期方法的条件反射
const people = [      { name: 'Wes', year: 1988 },      { name: 'Kait', year: 1986 },      { name: 'Irv', year: 1970 },      { name: 'Lux', year: 2015 }    ];    const comments = [      { text: 'Love this!', id: 523423 },      { text: 'Super good', id: 823423 },      { text: 'You are the best', id: 2039842 },      { text: 'Ramen is my fav food ever', id: 123523 },      { text: 'Nice Nice Nice!', id: 542328 }    ];    // Some and Every Checks    // Array.prototype.some() // is at least one person 19?    // const isAdult = people.some(function(person) {
// const currentYear = (new Date()).getFullYear(); // if(currentYear - person.year >= 19) {
// return true; // } // }); const isAdult = people.some(person => ((new Date()).getFullYear()) - person.year >= 19); console.log({isAdult}); // Array.prototype.every() // is everyone 19? const allAdults = people.every(person => ((new Date()).getFullYear()) - person.year >= 19); console.log({allAdults}); // Array.prototype.find() // Find is like filter, but instead returns just the one you are looking for // find the comment with the ID of 823423 const comment = comments.find(comment => comment.id === 823423); console.log(comment); // Array.prototype.findIndex() // Find the comment with this ID // delete the comment with the ID of 823423 const index = comments.findIndex(comment => comment.id === 823423); console.log(index); // comments.splice(index, 1); const newComments = [ ...comments.slice(0, index), ...comments.slice(index + 1) ];

 

转载于:https://www.cnblogs.com/wangxi01/p/10647616.html

你可能感兴趣的文章
ES6中的Symbol
查看>>
1.8小结
查看>>
浅谈C#关于AOP编程的学习总结
查看>>
无障碍阅读
查看>>
bzoj1494 生成树计数 (dp+矩阵快速幂)
查看>>
python canvas画移动物体_tkinter – 用于画布对象python的动画移动的方法
查看>>
java 连接 rac_JAVA 连接 ORACLE RAC 字符串
查看>>
java面试题 网络编程_java面试题《三、网络编程》
查看>>
java布尔矩阵程序_Java编程学习摘要(2)语法基础
查看>>
java no wait_即使队列在activemq中不为空,JMS实现中的receiveNoWait也返回null
查看>>
java定义player类_简易扑克牌游戏 定义了Constants、Main、Player、Poker四个类
查看>>
java方法重载例题_Java方法重载实现原理及代码实例
查看>>
java 字符串 包含 次数_用JAVA写查询一个字符串中是否包含另外一个字符串以及出现的次数...
查看>>
java jvm arg_java – Ant,jvmarg,系统属性和引号
查看>>
karp算法Java_Java – 具有Held和Karp算法的旅行推销员
查看>>
Session共享问题---理论
查看>>
Redis键的基本操作
查看>>
redis的安装---Linux
查看>>
Redis过期命令
查看>>
Redis键的序列化和反序列化
查看>>