Skip to content

Instantly share code, notes, and snippets.

@RGBz
Created October 26, 2021 16:02
Show Gist options
  • Save RGBz/c960b643936efadbd0b12441479a4c97 to your computer and use it in GitHub Desktop.
Save RGBz/c960b643936efadbd0b12441479a4c97 to your computer and use it in GitHub Desktop.
Deleting from an optional chain
const x = { y: 1 };
// Delete a key that doesn't exist from an optional chain
delete x?.y?.z;
// This results in:
// > {"y":1}
console.log(JSON.stringify(x));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment