当前位置:网站首页>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.entries
method you can easily convertObject
toMap
.
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
边栏推荐
猜你喜欢
SQL Server 2019安装错误0x80004005 服务没有及时响应启动或控制请求详细解决方法
手撸架构,Mysql 面试126问
SQL Server database generation and execution of SQL scripts
SQL Server 2014安装教程(保姆级图解教程)
php - the first of three solid foundations
MD5 detailed explanation (check file integrity)
svg实现的树木四季变化
FreeRTOS--Priority Experiment
LeetCode_139_word split
SQL Server修改数据
随机推荐
According to the field classification Golang map array
sql concat() function
智能手表前景如何?
js stopwatch countdown plugin
linux basic command explanation
SQL中字符串拼接
The use of QListView
Manual architecture, Mysql interview 126 questions
js true 3d histogram plugin
FreeRTOS--栈实验
FreeRTOS experiment--one function creates multiple tasks
Intouch System Platform IDE-1
LeetCode_139_单词拆分
js半圆环加载进度动画js特效
Technology sharing | Description of the electronic fence function in the integrated dispatching system
FreeRTOS--优先级实验
手撸架构,MongDB 面试50问
Software component analysis: 5 major capabilities to protect software supply chain security
商业流程服务BPass你真的了解吗?
WebUI自动化测试框架搭建从0到1(完整源码)更新完毕