Skip to content

Instantly share code, notes, and snippets.

@IAmAnubhavSaini
Created July 17, 2024 20:44
Show Gist options
  • Save IAmAnubhavSaini/8c8290eb1c4a2ce68fc7eef321d25ba2 to your computer and use it in GitHub Desktop.
Save IAmAnubhavSaini/8c8290eb1c4a2ce68fc7eef321d25ba2 to your computer and use it in GitHub Desktop.
have fun with javascript
[10, 2, NaN, " a string", 1.232, true, false, Infinity, 1, -0, 0, -Infinity, {}].sort();
[10, 2, NaN, " a string", 1.232, true, false, Infinity, 1, -0, 0, -Infinity, {}].sort((a, b) => a - b);
[10, 2, NaN, " a string", 1.232, true, false, Infinity, 1, -0, 0, -Infinity, {}].sort((a, b) => b - a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment