[JS] Module

Chenยท2024๋…„ 6์›” 10์ผ

Javascript

๋ชฉ๋ก ๋ณด๊ธฐ
8/22
post-thumbnail

script ํŒŒ์ผ์ด 20-30๊ฐœ ์žˆ๋‹ค๊ณ  ์ƒ๊ฐํ•ด๋ด! ์–ผ๋งˆ๋‚˜ ์ง€์ €๋ถ„ํ•ด
๊ทธ๋ž˜์„œ main.js๋งŒ html์— ์—ฐ๊ฒฐ์‹œ์ผœ์ฃผ๊ณ  ๋‚จ๊ฒจ๋†“๊ณ , main.js ์ž์ฒด์—์„œ ๋‹ค๋ฅธ js๋ฅผ ํฌํ•จ์‹œํ‚ค๋Š” ๊ฒƒ

<script src="hello.js"></script>
<script src="main.js"></script>
<!-- <script src="hello.js"></script> -->
<script type="module" src="main.js"></script>
// import { hello1, hello2 } from './hello.js';
import * as hello from './hello.js';

hello.hello1();
hello.hello2();

default

default์ธ๋ฐ ์ค‘๊ด„ํ˜ธ ์“ฐ๋ฉด ์˜คํžˆ๋ ค ์—๋Ÿฌ๋‚จ

import hello1 from './hello.js';

hello1();

three.js ๋ชจ๋“ˆ ๊ฐœ๋ฐœ๋ฐฉ์‹์„ ์ง€์›

profile
ํ˜„์‹ค์ ์ธ ๋ชฝ์ƒ๊ฐ€

0๊ฐœ์˜ ๋Œ“๊ธ€