Linq implemented in TypeScript (for fun)
Aug 8, 2017 · 1 min read
Linq, the powerful system introduced on .NET 3.5 is a set of methods that allows you to manipulate collections and data.
I brought those methods to TypeScript, the source code is on my Github. (Not extensively tested)

The syntax is quite similar and the usage is essentially the same.
var three = [1, 2, 3].AsLinq().FirstOrDefault(o => o == 3);I also created a Visual Studio Extension to enable TypeScript in Unit Tests.
