[JavaScript] 자바스크립트 기본 다지기(Consol 객체), (var,let,const)
Consol 객체: 브라우저의 디버깅 콘솔(Firefox 웹 콘솔)에 접근할 수 있는 메서드를 제공.동작 방식은 브라우저마다 다르지만, 사실상 표준으로 여겨지는 기능도 여럿 있다.Consol 객체는 아무 전역 객체에서나 접근 가능.console.log('안녕하세요');console.log(123);console.log(true);var greeting = '안녕하세요.';console.log(greeting);console.log({a:"a", b:"b"});//테이블로 나온다console.table({a:"a", b:"b"})//에러를 보여주어야 한다console.error('Error!');//경고를 할때console.warn('Warning!');//1,2,3,4,5를 출력하는데 얼마의 시간이 걸리..
2024. 11. 16.