Skip to content

Instantly share code, notes, and snippets.

@saeedvakili
Created October 23, 2023 13:36
Show Gist options
  • Save saeedvakili/4cbc7c951aa53f4468c419be2f2d19df to your computer and use it in GitHub Desktop.
Save saeedvakili/4cbc7c951aa53f4468c419be2f2d19df to your computer and use it in GitHub Desktop.
const user = { age: null };
// if (!user.age) user.age = "unknown";
user.age ??= "unknown";
console.log(JSON.stringify(user));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment