Skip to content
得時笔记
搜索文档
K
Main Navigation
全唐诗录
分类
分类列表
前端笔记
JavaScript笔记
CSS整理
工具整理
专题
专题列表
基础算法
React
Vue
生活感悟
深色模式
菜单
回到顶部
文档章节
Table of Contents for current page
实现Object.create
js
function
zCreate
(
obj
)
{
function
fn
()
{}
fn
.
prototype
=
obj
;
return
new
fn
()
;
}
1
2
3
4
5
6
7