Client side, can we import a JavaScript module in the <script></script> tag of a HTML page without loading an external script?
<html>
<head>
...
</head>
<body>
...
<script>
document.getElementById('btn').onclick = () => {
// Import a JS module here
}
</script>
</body>
</html>
<script>tag though