Quiz on D3.js Fundamentals
Check your understanding of the concepts covered so far.
1
Which of the following is the correct way to insert a div
inside the body
tag using D3 selection?
A)
d3.select("body").append("div")
B)
d3.append("div")
C)
d3.select("body").text("div")
D)
All of the above
Question 1 of 70 attempted