摘要:
var a=[1,2,3,4,5,8,9,10]; var b=[6,7,8,9,10]; var c = a.concat(b);//合并成一个数组 console.log(c) temp = {},//用于id判断重复 result = [];//最后的新数组//遍历c数组,将每个item.id在temp中是否存在值做判断,如不存在则对应的item赋值给新数组,并将temp中i... 阅读全文
摘要:
var BaiduUsers = [], WechatUsers = []; var User = function(id, name, phone, gender, age, salary) { this.id = id; this.name = name; this.phone = phone; this.gender = gender; this.age = age; this.salar... 阅读全文
摘要:
user nginx; worker_processes 4; error_log /var/log/nginx/error.log warn; pid /var/run/nginx.pid; worker_rlimit_nofile 100000; events { worker_connections 10240; } http { inclu... 阅读全文
摘要:
原文链接 https://segmentfault.com/q/1010000010075035 将下列对象数组中,工资大于1w的员工,增加到对象数组 WanSalary中 第一种 循环遍历,注意一下return user的位置;有的同学不小心,总是只新增了一个对象数据 第二种用filter方法 由 阅读全文
摘要:
HashMap1. 初始化 1. 初始容量(默认是16) 2. 负载因子(默认是0.75) 3. 容量的数量就是桶的数量; 当超过负载因子*容量这个阈值,那么hashmap就会扩容 2. put操作 1. 当key为null时 1. 判断null的桶是否为空, 为空,直接插入一个Entry 不为空, 阅读全文
摘要:
原文链接 https://segmentfault.com/q/1010000010352622 希望将下列数组中的sh替换成沪,sz替换成深 最简便: 再次定义一个对象, 定义一个返回vlaue的函数; map一下 阅读全文