JSFiddle - React, Tailwind, and code Playground

by Dunstan Matekenya

JavaScript

d3.select("body")
                .attr("fill","red")
                .text("Dunstan")
                .attr("x", 300)
                .attr("y", 200)
                .attr("font-size", "50px")
                .transition()
                    .delay(750)
                    .duration(750)
                    .text(function() {
                        return d3.interpolateString("Dunstan","Mercy");
                    }; );