d3.js
<script src="https://d3js.org/d3.v6.min.js"></script>
d3 js
// conventional method of selecting all paragraphs
//and changing their color property to blue
var paragraphs = document.getElementsByTagName("p");
for (var i = 0; i < paragraphs.length; i++) {
var paragraph = paragraphs.item(i);
paragraph.style.setProperty("color", "blue", null);
}
//D3 way of doing the same
d3.selectAll("p").style("color", "blue");
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us