美文网首页
记一次面试题

记一次面试题

作者: 地主家也没余粮叻 | 来源:发表于2018-09-06 14:41 被阅读0次

    1.  已知数组 = [1, 3, 5, 6, 8] 把7添加在最前面,倒序,然后输出字符串
     let arr =[1, 3, 5, 6, 8]
    arr.unshift(7)  // 直接链写报错是因为unshift 返回索引所以需要分两步来写
    arr.sort().join()
    2. content 盒子为flex 布局,求里面的子元素div 水平垂直居中

    ```
    .content {

        display: flex;

        border: 1px solid red;

        width: 200px;

        height: 200px;

        position: relative;

        justify-content: center;

        align-items: center; // 子元素不用设置就是水平垂直居中了

    }

    .box2 {

        width: 100px;

        height: 100px;

        border: 1px solid yellow;

    }

    ```

    3. 画图说明css 盒子模型
    css 盒子模型包括内容大小、内边距、边框、外边距

    css 盒子模型

    4. 简述vue 的优点有哪些
    5. 简述原型和原型链
    6. 比较vue react  AngularJS 三种之间的差别

        

    相关文章

      网友评论

          本文标题:记一次面试题

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