快手前端日常实习一面
回馈牛客社区
- rabbitmq 的数据存放在哪里
- rabbitmq 的确认应答
- pm2 的原理
- vue 路由模式
- 离线模式
- 原型链
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);
- 短划线转驼峰
- 多维数组维度
- 实现一个包装器函数
const repeatFunc = repeat(console.log, 4, 3000); repeatFunc("helloworld"); // 每3秒打印一个helloworld,总计执行4次
- 实现 Promise.prototype.finally
- 统计树的节点个数,递归和非递归解法