chrome dev tools console api
console.time();for (var i = 0; i < 100000; i++) { let square = i ** 2;}console.timeEnd();
chrome dev tools console api
console.time();for (var i = 0; i < 100000; i++) { let square = i ** 2;}console.timeEnd();
chrome dev tools console api
const first = () => { second(); };const second = () => { third(); };const third = () => { fourth(); };const fourth = () => { console.trace(); };first();
chrome dev tools console api
console.error("I'm sorry, Dave. I'm afraid I can't do that.");
chrome dev tools console api
const x = 5;const y = 3;const reason = 'x is expected to be less than y';console.assert(x < y, {x, y, reason});
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us