The problem I ran into is removing values ββin onject that has false property Here is the object
var myObj={105:true,183:false,108:true,106:false}
I can get the values ββin an array using the following logic:
Object.keys(myObj) gives ["105","183","108","106"] But I need a way to remove values ββthat have the false property and generated as ["105",108"] . Can you to help me?
javascript arraylist arrays angularjs
forgottofly
source share