Last active
February 25, 2019 20:47
-
-
Save hallison/ac992b6eb677ed7ad9da21056c591fd6 to your computer and use it in GitHub Desktop.
Order list items in Array
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.orderItems = function(newer, older) { | |
var list = new Array(...this) | |
return list.splice(newer - 1, 0, ...list.splice(older, 1)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment