javascript에서 import는 특정 함수를 가져올 수 있다.

import {capitalizeString} from "string_functions";

"use strict";
capitalizeString("hello!");

댓글