[javascript] 유틸 함수 사용

유재민·2022년 4월 28일
0

# 유틸리티 함수 사용

유틸(Utils) 함수를 사용하여 반복되는 명령을 줄일 수 있다. 아래는 유틸리티 함수를 사용한 예시이다.

// utils
function $(selector) {
  return document.querySelector(selector);
}

// DOM
const confirmedTotal = $(".confirmed-total");
const deathsTotal = $(".deaths");
const recoveredTotal = $(".recovered");
const lastUpdatedTime = $(".last-updated-time");
profile
프론트엔드 개발자

0개의 댓글