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 b768178 + 0c762d7 commit a050a8cCopy full SHA for a050a8c
docs/2-browser-apps/01-inspector/index.mdx
@@ -105,14 +105,14 @@ JavaScript の実行がブレークポイントを設定した地点に差し掛
105
106
:::tip[`console.log` 関数]
107
108
-デバッガを使わずに、`console.log` 関数を使ってデバッグすることもできます。`console.log` 関数は、ブラウザの開発者ツールの `Console` に値を出力する関数です。
109
-以下のプログラムは `x` と `y` の和を出力するプログラムですが、`console.log` 関数を使ってプログラムの実行中に値の変化を確認したり、エラーが発生した際に原因を特定することができます。
+`console.log` 関数は、メッセージをブラウザの開発者ツールの `Console` に出力します。
+`console.log` 関数を使ってプログラムの実行中に値の変化を確認したり、問題が発生した時に原因を特定したりすることができます。
110
111
```javascript
112
const x = 5;
113
const y = 10;
114
const sum = x + y;
115
-console.log("x + y = ", sum);
+console.log("x + y は、", sum);
116
```
117
118
:::
0 commit comments