In this coding example, a scale and an axis object can be seen in the console:
<!DOCTYPE html>
<head>
</head>
<body>
<script src="//d3js.org/d3.v5.js"></script>
<script>
console.log(d3.scaleTime());
console.log(d3.axisRight());
</script>
</body>
When I changed the reference to
<script src="//d3js.org/d3.v5.min.js"></script>
, I noticed that I received two f l(n)...
outputs. It's interesting to point out that I expected no difference between these two versions, as mentioned here?