Return to site

JS: Console logging API in pictures

· fullstack

console.table(users);

Section image

console.timeEnd("vv");

Section image

console.trace();

Section image

console.count(x);

Section image

console.clear();

Section image

console.assert(result === 5, "Expected 5");

Section image

console.group("Do this 👇");console.groupEnd();

Section image

#js #console #log #programming #javascript #picture