Last active
February 21, 2018 02:05
-
-
Save r17x/0213f4d13ec0a6ce668fcc0b0bee9bf8 to your computer and use it in GitHub Desktop.
ArraySortJavascript.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array.prototype.sorted = true; | |
Array.prototype.sortBy = function(p) { | |
// this = [] = Array || global array | |
this.sorted = ! this.sorted; | |
return ! this. | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment