chujCiWSilikon
unknown
javascript
3 years ago
248 B
5
Indexable
var ctArray = [ {displayValue: 'CT1', Value: 'true'}, {displayValue: 'CT2', Value: 'false'}, {displayValue: 'CT3', Value: 'true'} ] let ctTrue = ctArray.filter(function (e) { return e.Value == 'true' }) console.log(ctTrue)
Editor is loading...