我想在构建小部件中调用一个类。 var conversations = ['R: test1' , 'R: test3' , 'tx' , 'I sent' ]
var out = conversations.filter(function(m){
return m.indexOf('R:')!== -1
}).splice(-1)
console.log(out)
是一个整数变量。我的班级是number
,它有几个属性。其中之一是ExpandableContainer
,我想知道expandedHeight
是否小于4,number
,否则为expandedHeight: 58.0 * number
。
expandedHeight: 58.0 * 4
我该怎么做?
答案 0 :(得分:1)
三元组使这变得容易
expandedHeight: 58 * (number < 4 ? number : 4),