- ES6 教程
- ES6 - 主页
- ES6 - 概述
- ES6 - 环境
- ES6 - 语法
- ES6 - 变量
- ES6 - 运算符
- ES6 - 决策制定
- ES6 - 循环
- ES6 - 函数
- ES6 - 事件
- ES6 - Cookie
- ES6 - 页面重定向
- ES6 - 对话框
- ES6 - Void 关键字
- ES6 - 页面打印
- ES6 - 对象
- ES6 - 数字
- ES6 - 布尔值
- ES6 - 字符串
- ES6 - Symbol
- ES6 - 新字符串方法
- ES6 - 数组
- ES6 - Date
- ES6 - Math
- ES6 - RegExp
- ES6 - HTML DOM
- ES6 - 迭代器
- ES6 - 集合
- ES6 - 类
- ES6 - Map 和 Set
- ES6 - Promise
- ES6 - 模块
- ES6 - 错误处理
- ES6 - 对象扩展
- ES6 - Reflect API
- ES6 - Proxy API
- ES6 - 验证
- ES6 - 动画
- ES6 - 多媒体
- ES6 - 调试
- ES6 - 图像地图
- ES6 - 浏览器
- ES7 - 新特性
- ES8 - 新特性
- ES9 - 新特性
- ES6 有用资源
- ES6 - 快速指南
- ES6 - 有用资源
- ES6 - 讨论
ES6 - Object.setPrototypeOf
借助此函数,我们可以将指定对象的原型设置为另一个对象或 null。
语法
在此语法中,obj 是要设置其原型的对象,prototype 是对象的新原型(对象或 null)。
Object.setPrototypeOf(obj, prototype)
示例
<script> let emp = {name:'A',location:'Mumbai',basic:5000} let mgr = {name:'B'} console.log(emp.__proto__ == Object.prototype) console.log(mgr.__proto__ == Object.prototype) console.log(mgr.__proto__ ===emp.__proto__) Object.setPrototypeOf(mgr,emp) console.log(mgr.__proto__ == Object.prototype) //false console.log(mgr.__proto__ === emp) console.log(mgr.location,mgr.basic) </script>
以上代码的输出将如下所示 −
true true true false true Mumbai 5000
广告