当前位置:网站首页>Object.entries()
Object.entries()
2022-08-02 12:34:00 【m0_67394006】
Object.entries() method returns an array of key-value pairs for the given object's own enumerable properties.
The order is the same as that returned when looping over the object using for...in (the difference being that the for-in loop also enumerates properties in the prototype chain).
Syntax
Object.entries(obj)
Parameters
obj: An object that can return key-value pairs of its enumerable properties.
Return value
An array of key-value pairs for the given object's own enumerable properties.
Description
Object.entries() returns an array whose elements are the arrays corresponding to the key-value pairs of enumerable properties found directly on object.The properties are in the same order as given by manually looping through the object's property values.
The parameter is an object
const obj = { name: 'xiaoming', age: 'seven',sex: 'man', grade: 'four' };const res = Object.entries(obj)console.log(res);Run result:

The parameter is an array
const obj = [1,2,3,4,5,6]const res = Object.entries(obj)console.log(res);Run result:

The parameter is an array (the array contains objects)
const obj = [1,2,3,4,5,6,{a:'a'},{b:'b'},{c:'c'}]const res = Object.entries(obj)console.log(res);Run result:
The parameter is an array (the elements in the array are objects)
const obj = [{a:'a'},{b:'b'},{c:'c'}]const res = Object.entries(obj)console.log(res);Run result:
Objectconverted to Map
The
new Map()constructor accepts an iterable ofentries.With the help of theObject.entriesmethod you can easily convertObjecttoMap.
const obj = { name: 'xiaoming', age: 'seven',sex: 'man', grade: 'four' };console.log(Object.entries(obj));const map = new Map(Object.entries(obj));console.log(map);Run result:

Summary
Object.entries() can traverse the key value of an object in the form of an array. The result is the same as the result returned when for...in loops through the object, but it will not traverseits prototype properties.
Let me introduce myself first. The editor graduated from Shanghai Jiaotong University in 2013. I worked in a small company and went to big factories such as Huawei and OPPO. I joined Alibaba in 2018, until now.I know that most junior and intermediate java engineers want to upgrade their skills, they often need to explore their own growth or sign up to study, but for training institutions, the tuition fee is nearly 10,000 yuan, which is really stressful.Self-learning that is not systematic is very inefficient and lengthy, and it is easy to hit the ceiling and the technology stops.Therefore, I collected a "full set of learning materials for java development" for everyone. The original intention is also very simple. I hope to help friends who want to learn by themselves but don't know where to start, and at the same time reduce everyone's burden.Add the business card below to get a full set of learning materials
边栏推荐
猜你喜欢
随机推荐
js秒表倒计时插件
自定义mvc框架复习
svg balloon rises explosion js special effect
Taurus.MVC V3.0.3 微服务开源框架发布:让.NET 架构在大并发的演进过程更简单。
To eliminate air bubbles to save the mushroom h5 small game source code
openGauss数据库基本操作(超详细)
30 lines of code to realize serverless real-time health code recognition -- operation manual
手撸架构,Redis面试41问
PHP伪协议详解
SQL Server2019安装步骤及脱机安装Microsoft机器学习组件下一步不能继续的问题
机器人碰撞检测方法形式化
数据湖(三):Hudi概念术语
Taurus.MVC V3.0.3 Microservice Open Source Framework Released: Make the evolution of .NET architecture easier in large concurrency.
Data Lake (2): What is Hudi
Chapter 11 Documents
太厉害了,终于有人能把TCP/IP 协议讲的明明白白了
三种实现分布式锁的方式
内存存储结构
simulink PID自动整定
Do you really understand the business process service BPass?








