유틸(Utils) 함수를 사용하여 반복되는 명령을 줄일 수 있다. 아래는 유틸리티 함수를 사용한 예시이다.
// utils
function $(selector) {
return document.querySelector(selector);
}
// DOM
const confirmedTotal = $(".confirmed-total");
const deathsTotal = $(".deaths");
const recoveredTotal = $(".recovered");
const lastUpdatedTime = $(".last-updated-time");