I'm new to both D3.js and Logi Analytics and I've been told to code using both. I was trying to console.log the d3 object just to make sure Logi was picking it up. When I ran the code in the browser I got a "Uncaught ReferenceError: d3 is not defined"
What am I missing?
D3CountyMap.js ---
console.log(d3);
index.html ---
<html>
<head>
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="D3CountyMap.js"></script>
</head>
<body>
<div></div>
</body>
</html>
]