Answers for "change index array javascript"

2

change index array javascript

Array.prototype.move = function(from, to) {
    this.splice(to, 0, this.splice(from, 1)[0]);
};
Posted by: Guest on February-04-2021
0

javascript move item in array to another index

function moveArrayItemToNewIndex(arr, old_index, new_index) {
    if (new_index >= arr.length) {
        var k = new_index - arr.length + 1;
        while (k--) {
            arr.push(undefined);
        }
    }
    arr.splice(new_index, 0, arr.splice(old_index, 1)[0]);
    return arr; 
};

//move index 1(b) to index 2(c)
console.log(moveArrayItemToNewIndex(["a","b","c","d"], 1, 2)); // returns ["a", "c", "b", "d"]
Posted by: Guest on August-02-2019

Code answers related to "change index array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language