【JavaScript】デバッグ用のconsole.logを作る
2023-6-13 | JavaScript
JavaScriptでデバッグ用のconsole.log
を作りたい!
概要
今回の記事では、JavaScriptでデバッグ用のconsole.log
を作る手順を掲載する。
仕様書
環境
- Google Chrome 114.0.5735.90(Official Build)(64 ビット)
手順書
DEBUG
がtrue
の場合のみコンソールに出力するサンプル。
var DEBUG = true;
function debugLog( s )
{
if ( DEBUG )
{
console.log( s );
}
}
リリースの時はvar DEBUG = false;
にすることでコンソールに出力されなくなる。
まとめ(感想文)
Cとかにこういうのあった気がする今日この頃。