Alert & Console

경고창과 콘솔

1. Alert

경고창(메세지)을 띄워주는 역할

alert('Im Working. Im JS. Im Beautiful. Im worth it');

2. Console

관리자 도구에서 콘솔을 통해 오류나 자바스크립트 코드를 즉석에서 작성하고 확인할 수 있음

console.log('Im Working. Im JS. Im Beautiful. Im worth it');

Last updated