본문 바로가기
Javascript

console API에 대해

by 하이바네 2022. 8. 9.
반응형

javascript를 사용하여 개발을 하다보면 주로 alert, console.log를 사용하게 된다.

 

alert은 값도 출력 시키고 잠시 멈출때 주소 사용하고 console.log는 간단히 콘솔창에 값만 체크할때 나는 주로 사용중이었다. 여기서 중요한거는 그냥 별 생각없이 습관적으로 사용 했다는 것...

 

그 중에 console API안에는 많은 메소드들이 존재한다.

 

예를 들면

 

console.dir과 같은 것인데 해당 메소드는 객체의 속성에 대해 자세히 출력 시킨다.

console.time, console.timeEnd 는 성능 체크를 위해서 사용 가능하다.

 

아래 링크에 들어가면 정말 많은게 있고 개발중에 활용할 만한것도 많다.

 

https://developer.mozilla.org/en-US/docs/Web/API/console

 

console - Web APIs | MDN

The console object provides access to the browser's debugging console (e.g. the Web console in Firefox). The specifics of how it works varies from browser to browser, but there is a de facto set of features that are typically provided.

developer.mozilla.org

 

728x90

댓글