仅仅记录印象比较深的
1.Object.create
let a = Object.create(null) console.log(a.__proto__)2.遍历网络图的方法
广度优先搜索、深度优先搜索
3.let a = '1234'; let b = '432';let c = '432ab',比较a,b,c的大小
4.
function fn() { let a = b = 100 window.x = y = 101 } fn() console.log(b, x, y)
5.TCP拥塞控制相关概念:慢启动、快速重传、快速恢复
编程题很简单: 1.计算数组最大值和最小值的差
function getMaxDiff( arr ) { // write code here let min = Infinity let max = -Infinity arr.forEach(item=>{ min = item < min ? item : min max = item > max ? item : max }) return max - min }2.数组去重....
全部评论
(0) 回帖