Object.fromEntries
Posted qjb2404
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Object.fromEntries相关的知识,希望对你有一定的参考价值。
//数组转换成对象 const arr = [[‘foo‘, 1],[‘bar‘, 2]] const obj = Object.fromEntries(arr) console.log(obj.bar) //找出key的长度为3的值 const obj = { abc: 1, def: 2, ghewe: 3 } let res = Object.fromEntries( Object.entries(obj).filter(([key, val]) => key.length === 3) ) console.log(res)
以上是关于Object.fromEntries的主要内容,如果未能解决你的问题,请参考以下文章
为啥 Object.fromEntries(formData) 工作
ES10(2019)Object.fromEntries()
如何在 Typescript 中输入 Object.entries() 和 Object.fromEntries?
如何修复 tailwindcss-cli 抛出 TypeError: Object.fromEntries is not a function?