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.
1 parent 9ec058e commit 592aaceCopy full SHA for 592aace
README.md
@@ -1065,14 +1065,13 @@ JavaScriptはブラウザでそのまま実行されるので、書いたコー
1065
この際に、ホワイトスペースやコメントも一緒に削除されるので。
1066
ソースコードのコメントを必死になって整理しなくても良くなるというメリットもあります。
1067
1068
+<img src="https://github.com/misak1/clean-code-javascript/blob/master/uglify-min.png?raw=true">
1069
1070
### 後述のビルトイン関数の上書きを使った利用例
1071
1072
公開時にconsole.logが残っていると良くないことが多いですね。
-console.logからコードの処理が追われ、悪用されることもあるでしょうし、
1073
-ログに書き出しているとよろしくないコードが出ていることもあります。
1074
-
1075
-<img src="https://github.com/misak1/clean-code-javascript/blob/master/uglify-min.png?raw=true">
+console.logからコードの処理が追われ、悪用されたり、
+ログに書き出しているとよろしくないコードが出ていることもあります。
1076
1077
ビルトイン関数を上書きすることでconsole.logを止める方法
1078
応急処置として使われる方法
0 commit comments