首页 > 快手中后台前端一面
头像
康康爱吃瓜
编辑于 2021-09-03 11:21
+ 关注

快手中后台前端一面

1.
<style> 

    .classA { color:blue; } 

    .classB { color:red;}

    </style>
<link XXX.css> .classC { color: black; }
    <p class="classB classA classC">hello</p>
没加link的时候p标签是什么颜色,加了之后是什么颜色
2.
<div class="a"></div>
<div class="b"></div>
<style>
        .a {
            width: 200px;
            height: 100px;
            //margin:10px;
            margin: 50%;
        }
        .b {
            width: 100px;
            height: 100px;
            margin: 20px;
        }
</style>
a和b之前的距离是多少,怎么解决margin塌陷的问题
3.
Function.prototype.a = () => alert(1);
Object.prototype.b = () => alert(2);
function A() {};
var a = new A();
a.a();
a.b()
Function.prototype.a = () => alert(1);
Object.prototype.a = () => alert(2);
function A() {};
var a = new A();
a.a();
说输出
4.
function Foo() {
  this.a = 1;
  return {
    a: 4,
    b: 5,
  };
}
Foo.prototype.a = 6;
Foo.prototype.b = 7;
Foo.prototype.c = 8;
var o = new Foo();
console.log(o.a);
console.log(o.b);
console.log(o.c);
说输出
5.实现curry()
6.有序数组的合并排序
sort([1, 3, 5], [2, 4, 6]) // => [1, 2, 3, 4, 5, 6]
sort([1], [2, 3, 4, 5, 6]) // => [1, 2, 3, 4, 5, 6]
7.了解websocket吗  node.js  react的fiber   5555都不了解。
8.tcp三次握手四次挥手 为什么握手是三次不是四次
9.js数组的底层是怎么实现的
10.https握手的过程
11.react的渲染是同步还是异步的
12.vue和react有什么区别
13.如何判断链表有环

技术栈不符合 估计挂了
更新 没想到没挂,但技术栈完全不符合,他们主要用vue和nodejs,我是react并且node不会,不知道二面会怎么样。。

更多模拟面试

全部评论

(0) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

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

近期精华帖

热门推荐