Skip to content

Instantly share code, notes, and snippets.

@theharveyz
Last active March 8, 2017 18:39
Show Gist options
  • Save theharveyz/2f206e186a6aaac2ea08405911cc1961 to your computer and use it in GitHub Desktop.
Save theharveyz/2f206e186a6aaac2ea08405911cc1961 to your computer and use it in GitHub Desktop.
clone一个对象
export const clone = (origin) => {
//Object.create 创建一个指定原型的对象,可选若干参数
return Object.assgin(Object.create(Object.getPrototypeOf(origin)), origin);
}
@theharveyz
Copy link
Author

不是深拷贝

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment