8月2日面的,答得稀烂
- 原型和原型链
- 原型链的终点(null)?function的原型指向什么?(Function)
- new之后发生了什么?
- 看代码说输出
Function.prototype.a = 'Function'; Object.prototype.a = 'Object'; function Person(){}; var child = new Person(); console.log(Person.a); console.log(child.a); console.log(child.__proto__.__proto__.constructor.constructor.constructor);
如果将第一行去掉结果会变成什么? - 使用CSS画一个三角形
- 数组去重的方法
- v-if和v-show的区别?使用场景
- vue中父子组件间的通信方式
- vue2中为什么要有数组的变异方法
- vue2的双向数据绑定
- 如何设计实现一个图片轮播组件
- 算法题
从二叉树的根到叶子节点称为一条路径,路径上每个节点的value之和为路径和值,本题要求所有的路径中是否存在一条和值为N的
全部评论
(0) 回帖