Code Snippets, Ideas and Rants from a Tech Lead interested primarily in server side web development and leading teams who build web apps.
// This does not work[0, 1, null, 'a'].sort{a,b-> a > b}// This sorts fine[0, 1, null, 'a'].sort{a,b-> a <=> b}
No comments:
Post a Comment