Javascript lengthで空文字であるかを判定するサンプル
環境
Windows 10 home 64bit
Google Chrome 107.0.5304.122(Official Build) (64 ビット)
構文
const 変数名 =値
条件式
変数名.length === 0
lengthを使用して空文字であるかを判定します。
使用例
const target = '' if (target.length === 0) { console.log('空文字です') } if (target === '') { console.log('空文字です') } if (!target) { console.log('空文字です') }
実行結果
> "空文字です" > "空文字です" > "空文字です"