LoginSignup
0
0

More than 3 years have passed since last update.

null, undefined をわざわざ空文字に置換する

Posted at
// 置換前
const str1 = undefined;
const str2 = null;

// 空文字置換
const result1 = str1?.toString() ?? "";
const result2 = str1?.toString() ?? "";

console.log(result1); // ""
console.log(result2); // ""
0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0