27_Toast Notification
๐ป ์ฃผ์ : ๋ฒํผ ํด๋ฆญ ์ ํ๋จ์ ์๋์ด ๋จ๊ณ ์ผ์ ์๊ฐ์ด ์ง๋๋ฉด ์ฌ๋ผ์ง.
function getRandomMessage() {
return messages[Math.floor(Math.random() * messages.length)]
}
function getRandomType() {
return types[Math.floor(Math.random() * types.length)]
}
const notif = document.createElement('div')
notif.classList.add('toast')
notif.classList.add(type ? type : getRandomType())