home
search
help
profile
liking the experience? our app is even better
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now  
showing results for crome dev tools console api
1console.error("I'm sorry, Dave. I'm afraid I can't do that.");
upvote
downvote
source
1console.time();for (var i = 0; i < 100000; i++) {  let square = i ** 2;}console.timeEnd();
upvote
downvote
source
1const first = () => { second(); };const second = () => { third(); };const third = () => { fourth(); };const fourth = () => { console.trace(); };first();
upvote
downvote
source
1const x = 5;const y = 3;const reason = 'x is expected to be less than y';console.assert(x < y, {x, y, reason});
upvote
downvote
source