1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

JavaScript console 

Last updated at Posted at 2024-01-30

console.log(log);

変数の中身を見る
%cで指定した部分にスタイルをつける事も出来る
console.log(“%c エラー” , ”color: red; “);

console.table(table);

表形式で変数の中身を見る

console.dir(element)

DOMの詳細を表示する

console.trace(“中身”);

関数の呼ばれた場所までの経路を表示する

console.warn(“警告”)

コンソール上で黄色の文字で警告文を表示する

console.error(“エラー”)

コンソール上で赤色の文字でエラーメッセージを表示する

console.count()

実行回数を表示する

console.time(“時間”);

for (i = 0; i < 100000; i++) {}
console.timeEnd(“時間”);
コードの実行にかかった時間を表示する

console.clear()

コンソールがクリアされてConsole was clearedと言うメッセージが表示される

1
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?