I am currently filtering out null values from an array using Object.keys and map like this:
// The ultimate goal is to get the length of my list where !== null
var length = Object.keys(myList).map(x => myList[x]).filter(x => x !== null).length;
I need to find an alternative way of doing this because in IE11 I am having issues with it. It is interfering with functionality of a 3rd party control somehow.
Any ideas?