LINQ in JavaScript, ES6 style clarification

Monday, Sep 16, 2013 1 minute read Tags: javascript linq es6
Hey, thanks for the interest in this post, but just letting you know that it is over 3 years old, so the content in here may not be accurate.

I recently blogged about implementing LINQ in JavaScript with ES6 iterators. While I’d done a bunch of research, played around with FireFox (which seemed to have the most up-to-date implementation) and thought it was all well and good.

Unfortunately it turns out that what I was talking about was the __iterator__ syntax which FireFox has implemented but it’s not in line with the current iterator and generator approach.

So while I did state that the code was against an API that wasn’t set in stone I was a bit further away from where I wanted to be going forward.

Thanks Domenic for picking up on it and pointing me in the right direction, I’m in the process of reworking the library to work with what’s actually outlined so far in ES6 and you can check out the progress.