Object characteristics: 1. writable: writable let obj = {age:10} obj.age = 1 // Reassign the property console.log(obj.age) //1 2. enumerable: enumerable The let obj = {name:"zhang", age:20, sex:"male"} let newObj = Object.create(obj) newObj.height = 200 for(p in newObj){ console.log(p,"->", newObj[p]) } Output:
3. Configurable: Configurable let obj = {name:"jim"} delete obj.name // After deletion, the property will no longer exist console.log(obj.name) //undefined The above three properties of the object's own attributes are true by default. If you want to modify the default values of these characteristics, you can use
let obj = {name:"zhang", age:20, sex:"male"} Object.defineProperty(obj, "sex", {writable:false}) obj.sex = "female" console.log(obj.sex) // Male After setting This is the end of this article about the three property characteristics of javascript objects. For more relevant content on javascript object property characteristics, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Hide div in HTML Hide table TABLE or DIV content css style
>>: Design: A willful designer
Table of contents topic analyze Objects of use So...
Enter Alibaba vector icon library Alibaba Vector ...
This article shares the specific code of a simple...
Mysql8.0.12 decompression version installation me...
I want to make a page using CSS3 rounded corners ...
This article shares the specific code of Vue to i...
SSH public key authentication is one of the SSH a...
Table of contents 1.Linux login interface 2. Writ...
Copy code The code is as follows: <iframe id=&...
Overview (official has more detailed description)...
This article uses an example to illustrate the pa...
MySQL official website zip file download link htt...
Table of contents Introduction Download and insta...
Table of contents Preface 1. Binary Tree 1.1. Tra...
Antd+react+webpack is often the standard combinat...