Answers for "ts js if condition array number of elements"

9

typescript check if element in array

your_array.includes(the_element)
Posted by: Guest on March-25-2020
-2

typescript count array condition

let data = [ { "id": 1, "is_read": true, }, { "id": 2, "is_read": true, }, { "id": 3, "is_read": false, }, { "id": 4, "is_read": true, }, ],
length = data.filter(function(item){
  return item.is_read;
}).length;
console.log(length)
Posted by: Guest on October-23-2020

Code answers related to "ts js if condition array number of elements"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language