Skip to content

Instantly share code, notes, and snippets.

@Jagathishrex
Created December 30, 2020 15:26
Show Gist options
  • Save Jagathishrex/4b73135c844818bee099d3a00bbdf6f9 to your computer and use it in GitHub Desktop.
Save Jagathishrex/4b73135c844818bee099d3a00bbdf6f9 to your computer and use it in GitHub Desktop.
"use strict";
let user = { name : "Jagathish", age : 23 };
Object.preventExtensions(user);
delete user.age;
console.log(user); //{name: "Jagathish"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment