Math.floor(Math.random() * (maximum – minimum + 1)) + minimum
예) 1포함 6까지 랜덤으로 숫자를 구하고 싶다.
Math.floor(Math.random() * 6) + 1
'JS' 카테고리의 다른 글
JS 라이브러리_lodash, gsap, swiper (0) | 2022.06.04 |
---|---|
HTML과 연동시키기 (0) | 2022.05.26 |
태그의 특정속성만 골라서 업데이트 _ attributes (0) | 2022.05.25 |
innerHTML VS textContent (0) | 2022.05.25 |
class 추가/삭제_classList.add/remove/toggle (0) | 2022.05.25 |