DOM getElementById() Method returns the element that has the ID attribute with the specified value.
Normally faster then using querySelector()
const btnHold = document.querySelector('.btn--hold');
const current0El = document.getElementById('current--0');
const dice = Math.trunc(Math.random() * 6) + 1;
console.log(dice);
주어진 값의 소수부분을 제외한 숫자의 정수부분만 return한다.