jsではデフォルト引数に三項演算子が使える。
let isFuga = true;
function hoge(a = isFuga ? 114 : 514) {
console.log(a);
}
hoge(); // 114
isFuga = false;
hoge(); // 514
そんだけ
Go to list of users who liked
More than 1 year has passed since last update.
jsではデフォルト引数に三項演算子が使える。
let isFuga = true;
function hoge(a = isFuga ? 114 : 514) {
console.log(a);
}
hoge(); // 114
isFuga = false;
hoge(); // 514
そんだけ
Register as a new user and use Qiita more conveniently
Go to list of users who liked