“Crome Dev Tools Console API” Ответ

Crome Dev Tools Console API

console.time();for (var i = 0; i < 100000; i++) {  let square = i ** 2;}console.timeEnd();
Annoyed Angelfish

Crome Dev Tools Console API

console.error("I'm sorry, Dave. I'm afraid I can't do that.");
Annoyed Angelfish

Crome Dev Tools Console API

const first = () => { second(); };const second = () => { third(); };const third = () => { fourth(); };const fourth = () => { console.trace(); };first();
Annoyed Angelfish

Crome 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});
Annoyed Angelfish

Ответы похожие на “Crome Dev Tools Console API”

Вопросы похожие на “Crome Dev Tools Console API”

Больше похожих ответов на “Crome Dev Tools Console API” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования