试题总结

作者: 爱阳光的小蘑菇 | 来源:发表于2017-10-24 16:46 被阅读12次

    1、写出代码结果

    var temp={
      x:40,
      foo:function(){
        var x=10;
        return this.x; 
      }
    };
    console.log((temp.foo,temp.foo)());
    

    结果为:

    undefined
    undefined
    

    2、写出代码结果

    var a={};
    b={key:'b'};未完待续
    

    3、input 元素绑定onmousedown onmouseup onclick onfocus 四个事件,先执行哪一个?

    4、http2.0的新特性

    5、两个有序数列归并排序

    6、css画圆环

    7、排序算法稳定性

    8、this指向问题

    9、状态码 304、401、404、

    10、哪些操作会导致reflow

    11、DOM操作创建节点方法

    12、兼容的js创建日期对象的方式

    相关文章

      网友评论

        本文标题:试题总结

        本文链接:https://www.haomeiwen.com/subject/sphxpxtx.html