We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c2c6fab + 25a18f1 commit cca6b37Copy full SHA for cca6b37
docs/2-browser-apps/01-inspector/index.md
@@ -108,10 +108,8 @@ JavaScript の実行がブレークポイントを設定した地点に差し掛
108
109
:::tip `console.log`
110
111
-デバッガを使わずに、`console.log` を使ってデバッグすることもできます。`console.log` は、ブラウザの開発者ツールのコンソールに値を出力
112
-する関数です。
113
-以下のプログラムは x と y の和を出力するプログラムですが、`console.log` を使って
114
-プログラムの実行中に値の変化を確認したり、エラーが発生した際に原因を特定することができます。
+デバッガを使わずに、`console.log` を使ってデバッグすることもできます。`console.log` は、ブラウザの開発者ツールの `Console` に値を出力する関数です。
+以下のプログラムは `x` と `y` の和を出力するプログラムですが、`console.log` を使ってプログラムの実行中に値の変化を確認したり、エラーが発生した際に原因を特定することができます。
115
116
```javascript
117
let x = 5;
0 commit comments