首页 > 好未来笔经(还愿offer)
头像
零界梦(忆)
编辑于 2020-09-23 08:02
+ 关注

好未来笔经(还愿offer)

仅仅记录印象比较深的
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) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

近期热帖

历年真题 真题热练榜 24小时
技术(软件)/信息技术类
查看全部

热门推荐