码迷,mamicode.com
首页 > 其他好文 > 详细

Object.fromEntries

时间:2020-01-24 17:21:37      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:from   class   OLE   let   trie   bsp   col   bar   ons   

//数组转换成对象
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

标签:from   class   OLE   let   trie   bsp   col   bar   ons   

原文地址:https://www.cnblogs.com/qjb2404/p/12232278.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!