Answers for "javascript append index"

0

javascript appendchild at index

parentElement.insertBefore(newElement, parentElement.children[2]);
Posted by: Guest on January-21-2020
0

add new element by index js

const arr = [ 1, 2, 3, 4 ];
arr[5] = 'Hello, world!';

console.log(arr); // [ 1, 2, 3, 4, <1 empty item>, 'Hello, world!' ]
console.log(arr.length); // 6
Posted by: Guest on April-03-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language