[javascript] 변수에 함수 할당

const $ = (name) => document.querySelectorAll(name);
const alt = (str) => alert(str);

// example
$("body");
alt("에러 메시지");

변수, 상수, 배열 등 함수 할당이 가능하다.

Leave a Comment