Modify all "clauses" / lambda expressions to get called having "this" equal to the Array Item that's also being passed as a parameter.
Example usage:
var exampleArray = JSLINQ(myList)
.Where(function(){ return this.FirstName == "Chris"; })
.OrderBy(function() { return this.FirstName; })
.Select(function(){ return this.FirstName; });