Select and Append, part2

Back to table of contents
  // adds non-existent p element to dom body and then add text to p element.
  // example of method chaining.
  d3.select("body").append("p").text("Hi, What's up?");