alert() 를 console.log() 함수로 치환하기

2022. 1. 4. 16:50React

// alert 는 browser 환경에 존재하는 함수 입니다.
// 그로므로 node.js 환경에서는 호출시 ReferenceError: alert is not defined 오류가 발생합니다.
const alert = console.log.bind(console);

 

'React' 카테고리의 다른 글

Nvm & Node.js 개발 환경 설치  (0) 2021.12.19