I have question regarding date comparison in javascript.
I want to find max date out of three datetime variables.
Like, i can find max date in c# linq using following short way
maxDate= new[] {p1.Date, p2.Date, p3.Date}.Max();
Does javascript has such nice way to do that?