Hi there! I've recently started learning JavaScript and am currently exploring the functionalities of NumJS. However, I've encountered an error that's got me stumped. Even though the file "numjs.js" is included locally within the HTML, I keep getting this message:
<head>
<script src="numjs.js"></script>
</head>
<body style="font-family:Arial">
<font size=5>
<b>Test</b>
</font>
<script>
a = numjs.arange(0.,1.,6);
console.log(a);
</script>
</body>
Error message:
Uncaught ReferenceError: numjs is not defined
If anyone has any insights or advice on how to resolve this issue, I would greatly appreciate it. Thank you!