3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

JavaScript  console.logとconsole.errorの違い

Posted at

console.logconsole.error は、どちらもコンソールにメッセージを出力する際に使用されるメソッドですが、異なる目的で使われます。

  • console.log: 一般的な情報やデバッグ情報を表示するのに使われます。主に一般的なログ、変数の値、オブジェクトの内容などを表示するために使われます。通常のプロセスや実行の流れを理解するための情報を出力します。
console.log('This is a log message.');
console.log(variable); // 変数の値を表示
  • console.error: エラー情報や警告を出力するのに使用されます。特に問題がある場合やエラーが発生した場合に、その旨を強調して表示するために使われます。エラーが発生した場所や原因を特定しやすくするために使われます。
console.error('This is an error message.');
console.error(errorVariable); // エラーオブジェクトを表示

ブラウザや開発環境によっては、console.error で出力された情報は視覚的に目立ち、赤色や異なるスタイルで表示されることがあります。これにより、エラーの迅速な特定と修正を支援します。

3
0
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
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?