how to change value index in array in js 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]);
};