4일
3/4
JS
const closeListener = () => {
window.alert('닫기')
}
window.addEventListener('beforeunload', closeListener)const MESSAGES = {
good: '좋아요',
soGood: '훈훈해요',
sad: '슬퍼요',
angry: '화나요',
want: '후속기사원해요',
}
function random() {
const keys = Object.keys(MESSAGES)
const randomValue = Math.floor(Math.random() * keys.length)
return keys[randomValue]
}React
Last updated