ユーザーが情報を入力しなかった場合の判定処理の例
||を使うことで、userInputがfalsyだった場合に表示される値を
設定できる
const userInput = '';
const userName = userInput || 'User'
Go to list of users who liked
ユーザーが情報を入力しなかった場合の判定処理の例
||を使うことで、userInputがfalsyだった場合に表示される値を
設定できる
const userInput = '';
const userName = userInput || 'User'
Register as a new user and use Qiita more conveniently
Go to list of users who liked