Does LINQ work in JS?

Everything I’ve found online suggests it was written for C#. Does that mean I cannot use it in my Java scripts?

Thanks.

I just tried that, seems to work :

#pragma strict
import System.Collections.Generic;
import System.Linq;

function Start () 
{
	var list : List.<int> = List.<int>();
	list.Add(0);
	list.Add(3);
	list.Add(1);
	list.Add(2);
	var m = list.Max();
	print( m );
}