[Node] console

bunny.log·2022년 7월 30일
0

Node

목록 보기
1/5
post-custom-banner

global.console.log(''); 이나 global 생략 가능
(브라우저에 window.console.log를 console.log로 사용하는 것과 같다.)

console.dir

객체를 로깅

console.dir({hello:hello});

console.time

time부터 timeEnd까지 실행되는 코드 수행시간을 알수 있다.

console.time('hello');
const today = new Date();
const dday = new Date(date);
const gap = dday.getTime() - today.getTime();
const result = Math.ceil(gap / (1000 * 60 * 60 * 24));
console.timeEnd('hello end');

console.error

에러 로깅

console.trace

호출 스택을 보여줌

console.table

table 형태로 보여줌

profile
https://github.com/nam-yeun-hwa
post-custom-banner

0개의 댓글