Well done!
You have completed Review Appending and Removing Nodes!
Quiz Question 1 of 5
How does the append()
method insert an element into the document?
Choose the correct answer below:
-
A
append()
cannot place elements into the DOM independently; it must have "helper methods" to place a new element correctly. -
B
append()
always places the new element at the top of the DOM tree. From there, you can move it into place. -
C
append()
inserts a new element inside the specified parent node.