Coder
Coder
Append an Element
Prompt
Write a script that appends a div block with an id of 'child' to a div called 'parent'
Prompt
Write a script that appends a div block with an id of 'child' to a div called 'parent'
//Write a script that appends a div block with an id of child to a div called 'parent'var parent = document.getElementById('parent');var child = document.createElement('div');child.id = 'child';parent.appendChild(child);
Result