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

Object的rest和spread方法

时间:2020-01-24 00:24:50      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:object   res   inpu   read   color   code   input   获取   const   

//将多个对象合并到一个对象里
const input = {
  a: 1,
  b: 2
}
const test = {
  d: 5
}
const output = {
  ...input,
  ...test,
  c: 3
}

//拆解对象,获取想要的属性
const input = {
  a: 1,
  b: 2,
  c: 3,
  d: 4,
  e: 5
}
const { a, b, ...rest } = input
console.log(a,b,rest)

 

Object的rest和spread方法

标签:object   res   inpu   read   color   code   input   获取   const   

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

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