通过对象找到原型,通过原型的constructor可以找到构造函数,通过构造函数就可以创建出对象。(给我一个对象,我就能生成一个新的对象) functionUser(name){this.name =name; } let hd=newUser("哈登"); console.log(hd);//obj是传进去的对象//...args是用了点语法的形式,把要传递的参数传进去//Object.getProtot...