js面试题-----原型和原型链

题目1:如何判断一个变量是数组类型数组

答案:函数

var arr = [];
arr instanceof Array//true
typeof arr //object  typeof 是没法判断数组的

题目2:原型链继承的例子(原型链继承,还有不少方法 参考个人js系列继承的6种方式)this

答案:spa

function Animal(){
     this.eat = function(){
         console.log('animal  eat')

    }

}

function Dog(){
    this.bark = function(){
       console.log('bark')
    
     }

}

Dog.prototype = new Animal();

var hashiqi = new Dog()

题目3:描述new一个对象的过程prototype

答案: ①、建立一个新对象 ②、this指向这个新对象  ③、执行代码,即对this赋值  ④、返回this3d

题目4:建立对象的几种方式(字面量方式、构造函数模式、Object.create())code

答案:对象

 

题目5:原型、构造函数、实例、原型链blog

答案:继承

 

题目6:instanceof

答案:

题目7:new运算符

答案:

相关文章
相关标签/搜索