I have an object that I would like to filter it\'s keys..
Im trying to filter the object by an ID, like so:
let myKeys = Object.keys(data).filter(fun
If you have the proper key(s), you can just get the property from the object.
myKeys.forEach(key => { console.log(data[key]); });
This will print the object whose keys you've filtered earlier.