javascript 传播运营商(...)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 传播运营商(...)相关的知识,希望对你有一定的参考价值。

// Example use case: https://twitter.com/rubnvp/status/974397836723879937/photo/1

// instead of 
const newObject = {
  'attribute_1': attribute1,
  'attribute_2': attribute2
};

if (condition1) {
  newObject['attribute_3'] = attribute3;
}

// you can just do
const newObject = {
  'attribute_1': attribute1,
  'attribute_2': attribute2,
  ...(condition1 ? {'attribute_3': attribute3} : {})
};

// or another possibility
const newObject = {
  'attribute_1': attribute1,
  'attribute_2': attribute2,
  ...(condition1 && {'attribute_3': attribute3})
};

// or even more readable
const insertIf = (condition, object) => condition ? object : {};

const newObject = {
  'attribute_1': attribute1,
  'attribute_2': attribute2,
  ...insertIf(condition1, {'attribute_3': attribute3})
};

以上是关于javascript 传播运营商(...)的主要内容,如果未能解决你的问题,请参考以下文章

javascript ......传播运营商

javascript 传播运营商

javascript 传播运营商

javascript 传播和休息运营商

新媒体运营需要什么能力?需要具备哪些运营技能?

不传播的原因是啥(es 6传播运算符)javascript错误对象[重复]