Brian Gonzalez
Brian Gonzalez
Has there been any thought to adding iterable support for Better Array? You can do that by adding a NewEnum property like so: ``` Public Property Get NewEnum() As IUnknown...
In my current process, I search for a movie on JustWatch by using the title. If there are multiple titles that match this name, multiple media entries are returned. To...
Can we get a function that can give access to the JustWatch JSON data directly? From what I can tell, this would be almost the exact same code as is...
I was trying to test using a `console.log` statement with `Array.prototype.reduce()` and received an error. You can see the code below: ```typescript let arr = [1,5,4,2,3]; let firstVal = arr.reduce((prev,curr)=>{...