博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Javascript] Immute Object
阅读量:6294 次
发布时间:2019-06-22

本文共 695 字,大约阅读时间需要 2 分钟。

Three ways to make object immutable:

 

1. Use JSON.parse(JSON.stringify(obj)): this approach is little bit expense. 

2. Use Object.create()

var person = {  name: "Wan"}var copyPerson = Object.create(person);console.log(copyPerson.name); //Wan

This is a cheap way to do. 

Because Object.create() actually doesn't do a deep copy of the original object, it jut create a pointer to the original object, we can verify by:

console.log(JSON.stringify(copyPerson)); //"{}"

As we can see it is just a empty object.

 

3. Use Object.assign:

var person = {  name: "Wan"}var copyPerson = Object.assign({}, person);console.log(copyPerson.name); //"Wan"console.log(JSON.stringify(copyPerson)); //"{\"name\":\"Wan\"}"

 

转载地址:http://oxpta.baihongyu.com/

你可能感兴趣的文章
spring batch中用到的表
查看>>
资源文件夹res/raw和assets的使用
查看>>
UINode扩展
查看>>
LINUX常用命令
查看>>
百度云盘demo
查看>>
概率论与数理统计习题
查看>>
初学structs2,简单配置
查看>>
Laravel5.0学习--01 入门
查看>>
时间戳解读
查看>>
sbin/hadoop-daemon.sh: line 165: /tmp/hadoop-hxsyl-journalnode.pid: Permission denied
查看>>
@RequestMapping 用法详解之地址映射
查看>>
254页PPT!这是一份写给NLP研究者的编程指南
查看>>
《Data Warehouse in Action》
查看>>
String 源码浅析(一)
查看>>
Spring Boot 最佳实践(三)模板引擎FreeMarker集成
查看>>
Fescar 发布 0.2.3 版本,支持 Redis 和 Apollo
查看>>
Google MapReduce到底解决什么问题?
查看>>
CCNP-6 OSPF试验2(BSCI)
查看>>
Excel 2013 全新的图表体验
查看>>
openstack 制作大于2TB根分区自动扩容的CENTOS镜像
查看>>