Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はJavaスクリプトを開発していて、自分のコードにログを挿入したいのですが、グローバル変数などでオンとオフを切り替えられるようにしたいです。
それを行う方法はありますか?
ありがとう
はい、メソッドをオーバーライドするだけです:
var debugging=true; if (!debugging || "undefined" === typeof console.log) { console.log=function () {}; }