Built with blockbuilder.org
forked from robert-moore's block: D3 HTML Data Binding
xxxxxxxxxx
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
</head>
<body>
<script>
const animals = ["penguin", "giraffe", "moose", "koala"]
d3.selectAll("p")
.data(animals)
.enter()
.append("p")
.text(d => "Look, it's a " + d)
// data binding with d3
// callback within text()
</script>
</body>
https://d3js.org/d3.v4.min.js