JSFiddle - React, Tailwind, and code Playground

by yonet3d

HTML

<section></section>

JavaScript

var section = d3.selectAll("section");

section.append("div")
    .html("First!");

section.append("div")
    .html("Second.");

//Use chaining to create the same two divs and look in your console to see the difference.