Math.random( ) : 0~1 사이 랜덤 숫자(float)
Math.floor( ) : 소수 내림
Math.round( ) : 반올림
Math.ceil( ) : 올림
💡 Math.floor(Math.random( ) * 10) : 0~10 사이 랜덤 정수
quotes[Math.floor(Math.random() * quotes.length)]
⭐️ JS에서 HTML 요소 만들기 : createElement( )
ex) document.createElement("img")
- 요소 맨 뒤에 넣기 : childAppend( )
- 요소 맨 앞에 넣기 : childPrepend( )
출처: 노마드 코더 바닐라 JS로 크롬 앱 만들기