Table of Contents
Nine characteristics of js objects
Home Web Front-end Front-end Q&A What are the characteristics of javascript objects

What are the characteristics of javascript objects

Dec 07, 2021 pm 03:58 PM
javascript object Features

Characteristics of JavaScript objects: 1. The last attribute in the "key-value pair" list must end with a comma; 2. The data of an object declared using const can be modified; 3. The attribute name can It is the "[value]" method; 4. The left side of the "in" operator must be the attribute name, the right side is the object name, and the returned value is a Boolean value.

What are the characteristics of javascript objects

The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.

Nine characteristics of js objects

First: The last attribute in the "key-value pair" list must end with a comma

This comma has a fancy name: trailing comma (trailing)

The reason should be for standardization, or simply for beauty.

Second: The data of an object declared using const can be modified

The properties inside the object can be modified.

It is not possible to change the entire object.

Third: Multi-word attribute names to mess with

The key in the key-value pair, that is, if the name in name: "zhangsan" becomes "new name ".

Changing the name from one word to multiple words will cause some things to change.

  • Points can no longer be used. It used to be person.name, but now we cannot write person.new name.
  • You should write person["new name"]

When you encounter a multi-word name, remember three points:

  • Use brackets

  • Name in quotes

  • You can write strings directly in the brackets, or you can write variables, because strings can also be written in variables

Fourth: There is a weird way to name attributes, square brackets[]

 let name="apple"
 var o={
     [name]:5,
 }
 alert(o.apple);
Copy after login

Remember, in square brackets What is stored is not a certain, rigid fixed value, but a variable. Do you understand variables?

The kind that is flexible and changeable.

Fifth: Under special circumstances, the attribute value can be abbreviated

function makeUser(name, age) {
  return {
    name: name,
    age: age,
    // ……其他的属性
  };
}

let user = makeUser("John", 30);
alert(user.name); // John
Copy after login

It can be obtained by observation that the attribute name and variable name are the same.

At this time, you can change the writing method:

Before the change: name: name

After the change: name

What is the meaning? It is just for convenience. In a sense, it also increases the burden on beginners. Therefore, everything has two sides and nothing is wrong.

Sixth: The attribute name can be chosen casually

No need to worry about keywords not being used (Why do you have to use keywords? It hurts to be idle)

Remember one thing: __proto__ attributes. We cannot set it to a non-object value

Seventh: The role of "in"

"key" in object
Copy after login
  • The attribute name is in in the object.

The left side of in must be the attribute name, the right side is the object name, and the returned value is Boolean true or false.

The attribute name is usually a string, but it may also be a variable, and the variable is still a string.

So strings are still working.

Why in?

Because I am afraid that undefined will cause trouble.

Eighth: for...in loop

Grammar format:

 for (key in object) {
   // 对此对象属性中的每个键执行的代码
 }
Copy after login

Among them, except for the key on the left of in which is uncertain (can be replaced by other words), the structures of the other words are certain.

The side reflects that the important thing in this statement is "which object is to be traversed".

Ninth: The order of object attributes

One concept: integer attribute name

The attribute name is an integer string

Another A concept: Integer string

can be converted into integer string

"1", "2", etc. are integer strings.

Remember:

  • When the attribute name is not an integer string, the order when traversing the object to output data is in the order of creation
  • When the attribute name is an integer character Strings, in order from smallest to largest.

[Related recommendations: javascript learning tutorial]

The above is the detailed content of What are the characteristics of javascript objects. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What exactly is self-media? What are its main features and functions? What exactly is self-media? What are its main features and functions? Mar 21, 2024 pm 08:21 PM

With the rapid development of the Internet, the concept of self-media has become deeply rooted in people's hearts. So, what exactly is self-media? What are its main features and functions? Next, we will explore these issues one by one. 1. What exactly is self-media? We-media, as the name suggests, means you are the media. It refers to an information carrier through which individuals or teams can independently create, edit, publish and disseminate content through the Internet platform. Different from traditional media, such as newspapers, television, radio, etc., self-media is more interactive and personalized, allowing everyone to become a producer and disseminator of information. 2. What are the main features and functions of self-media? 1. Low threshold: The rise of self-media has lowered the threshold for entering the media industry. Cumbersome equipment and professional teams are no longer needed.

How to convert MySQL query result array to object? How to convert MySQL query result array to object? Apr 29, 2024 pm 01:09 PM

Here's how to convert a MySQL query result array into an object: Create an empty object array. Loop through the resulting array and create a new object for each row. Use a foreach loop to assign the key-value pairs of each row to the corresponding properties of the new object. Adds a new object to the object array. Close the database connection.

What is the difference between arrays and objects in PHP? What is the difference between arrays and objects in PHP? Apr 29, 2024 pm 02:39 PM

In PHP, an array is an ordered sequence, and elements are accessed by index; an object is an entity with properties and methods, created through the new keyword. Array access is via index, object access is via properties/methods. Array values ​​are passed and object references are passed.

What should I pay attention to when a C++ function returns an object? What should I pay attention to when a C++ function returns an object? Apr 19, 2024 pm 12:15 PM

In C++, there are three points to note when a function returns an object: The life cycle of the object is managed by the caller to prevent memory leaks. Avoid dangling pointers and ensure the object remains valid after the function returns by dynamically allocating memory or returning the object itself. The compiler may optimize copy generation of the returned object to improve performance, but if the object is passed by value semantics, no copy generation is required.

What is LEO coin? What are the characteristics of LEO coins? What is LEO coin? What are the characteristics of LEO coins? Mar 06, 2024 am 09:31 AM

LEO Coin: LEO Coin, the native token of Binance Exchange, is the native token released by Binance Exchange and was launched in 2019. As a multi-functional utility token, LEO Coin provides Binance users with a range of benefits and privileges. Features of LEO coins: Transaction fee discount: Holding LEO coins can enjoy a discount on Binance exchange transaction fees, up to 25%. VIP membership: Based on the number of LEO coins held, users can obtain different VIP membership levels and enjoy more exclusive benefits. Voting rights: LEO coin holders have the right to vote on major decisions of Binance Exchange and participate in platform governance. Ecosystem applications: LEO coins can be used to pay for various services and products in the Binance ecosystem, such as Binance Launchpad, Binance DEX

Explore the meaning and characteristics of i-node numbers in Linux Explore the meaning and characteristics of i-node numbers in Linux Mar 15, 2024 am 10:00 AM

The i node (inode) is a very important concept in the Linux file system and is used to store metadata information of files and directories. In the file system, each file or directory corresponds to a unique i node, through which the storage location and attributes of file data can be located and managed. 1. The meaning and function of i node i node is actually the abbreviation of index node, which saves the permissions, owner, size, creation time, modification time and actual data storage location on the disk of a file or directory, etc.

What is Ondo Coin? What are the characteristics of Ondo coin? What is Ondo Coin? What are the characteristics of Ondo coin? Mar 06, 2024 pm 08:22 PM

Ondo Coin: A digital currency with unlimited possibilities Ondo Coin is an innovative digital currency based on blockchain technology and aims to become the cornerstone of the future digital economy. It has the following characteristics: High scalability: Ondo coin adopts a unique consensus mechanism and can handle thousands of transactions per second to meet the needs of large-scale applications. Low transaction fees: The transaction fees of Ondo Coin are extremely low, providing users with an affordable transaction experience. Fast confirmation: Ondo coin transaction confirmation time is extremely fast, usually only a few seconds, providing users with an efficient trading experience. Security: Ondo currency uses advanced encryption technology to ensure safe and reliable transactions and protect user assets. Eco-friendly: Ondo coin’s consensus mechanism adopts Proof of Stake (PoS), which is better than Proof of Work (P

The meaning and characteristics of PHP version NTS The meaning and characteristics of PHP version NTS Mar 26, 2024 pm 12:39 PM

PHP is a popular open source scripting language that is widely used in web development. NTS in the PHP version is an important concept. This article will introduce the meaning and characteristics of the PHP version NTS and provide specific code examples. 1. What is PHP version NTS? NTS is a variant of the PHP version officially provided by Zend, which is called NotThreadSafe (non-thread safe). Usually PHP versions are divided into two types: TS (ThreadSafe, thread safety) and NTS

See all articles