There seems to be some confusion when it comes to JavaScript modules. Some developers are unsure of how they work and why are various ways that they can be used. To clear up some of these ...
はじめに:モジュール(Module)とは? これまでの学習では、すべてのコードを一つのファイルに書いてきました。しかし、コードの行数が増えると、どこに何が書かれているかわからなくなり、管理が非常に難しくなります。 モジュールとは、「特定の ...
HTMLでスクリプトを読み込むときに、type="module" を指定します。 他のファイルで使いたい関数をエクスポートします。 import { sayHello } from "./hello.js"; sayHello(); // こんにちは! main.js内で、import { 関数名 } from "ファイル名" でインポートできます。 複数の関数を ...