Three properties of javascript objects

Three properties of javascript objects

Object characteristics:

1. writable: writable

writable indicates whether the value of the property can be set

let obj = {age:10}
obj.age = 1 // Reassign the property console.log(obj.age) //1

2. enumerable: enumerable

The enumerable attribute refers to whether the property name can be returned in for/in loop. By default, both owned and inherited properties can be enumerated.

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:

height -> 200
name -> zhang
age -> 20
sex -> male

3. Configurable: Configurable

configurable indicates whether the attribute can be deleted through delete

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 Object.defineProperty() method. defineProperty receives three parameters: object, property name to be modified, and feature value object.

For example, if you want to set the writable property of the sex property to false, you can use the defineProperty() method to do this.

let obj = {name:"zhang", age:20, sex:"male"}
Object.defineProperty(obj, "sex", {writable:false})
obj.sex = "female"
console.log(obj.sex) // Male

After setting writable to false , even if the sex attribute is reassigned to female, its value is still male. Similar operations can be used to configure the enumerable and configurable characteristics of attributes.

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:
  • Detailed explanation of the idea of ​​implementing dynamic columns in angularjs loop object properties
  • JavaScript removes unnecessary properties of an object
  • When the springboot post interface accepts json, when it is converted to an object, the properties are all null.
  • Several ways to easily traverse object properties in JS
  • How to delete a property of an object in JavaScript
  • Use of hasOwnProperty method of js attribute object
  • The JS hasOwnProperty() method detects whether a property is an object's own property.
  • Parsing javascript Date object properties and methods through examples
  • Detailed explanation of dynamic addition, deletion, modification and query of properties when converting Java objects to JSON
  • When converting an object to json, java jackson ignores a property operation of the sub-object

<<:  Hide div in HTML Hide table TABLE or DIV content css style

>>:  Design: A willful designer

Recommend

How to use JavaScript to get the most repeated characters in a string

Table of contents topic analyze Objects of use So...

Use js to write a simple snake game

This article shares the specific code of a simple...

MySQL 8.0.12 decompression version installation tutorial personal test!

Mysql8.0.12 decompression version installation me...

Let IE6, IE7, IE8 support CSS3 rounded corners and shadow styles

I want to make a page using CSS3 rounded corners ...

Vue implements star rating with decimal points

This article shares the specific code of Vue to i...

Detailed explanation of the basic usage of SSH's ssh-keygen command

SSH public key authentication is one of the SSH a...

Ubuntu compiles kernel modules, and the content is reflected in the system log

Table of contents 1.Linux login interface 2. Writ...

How to point the target link of a tag to iframe

Copy code The code is as follows: <iframe id=&...

A brief introduction to the simple use of CentOS7 firewall and open ports

Overview (official has more detailed description)...

Example analysis of the page splitting principle of MySQL clustered index

This article uses an example to illustrate the pa...

MySQL Community Server 5.7.19 Installation Guide (Detailed)

MySQL official website zip file download link htt...

Detailed tutorial on installing Docker and docker-compose suite on Windows

Table of contents Introduction Download and insta...

Using JS to implement binary tree traversal algorithm example code

Table of contents Preface 1. Binary Tree 1.1. Tra...

Detailed explanation of the solution for migrating antd+react projects to vite

Antd+react+webpack is often the standard combinat...