a function to change the index of an array to 0 javascript code example
Example: change index array javascript
Array.prototype.move = function(from, to) {
this.splice(to, 0, this.splice(from, 1)[0]);
};
Array.prototype.move = function(from, to) {
this.splice(to, 0, this.splice(from, 1)[0]);
};