Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

change index array javascript

Array.prototype.move = function(from, to) {
    this.splice(to, 0, this.splice(from, 1)[0]);
};
 
PREVIOUS NEXT
Tagged: #change #index #array #javascript
ADD COMMENT
Topic
Name
2+9 =