apendchiled js code example
Example 1: appendchild javascript
const parent = document.createElement('div');
const child = document.createElement('p');
parent.append(child)
parent.appendChild(child)
parent.append('Hello world')
parent.appendChild('Hello world')
Example 2: appendchild javascript
const parent = document.createElement('div');
const child = document.createElement('p');
const appendValue = parent.append(child);
console.log(appendValue)
const appendChildValue = parent.appendChild(child);
console.log(appendChildValue)