const $ = (name) => document.querySelectorAll(name);
const alt = (str) => alert(str);
// example
$("body");
alt("에러 메시지");
변수, 상수, 배열 등 함수 할당이 가능하다.
웹 개발 개인 창고
const $ = (name) => document.querySelectorAll(name);
const alt = (str) => alert(str);
// example
$("body");
alt("에러 메시지");
변수, 상수, 배열 등 함수 할당이 가능하다.