Created
December 30, 2020 15:26
-
-
Save Jagathishrex/4b73135c844818bee099d3a00bbdf6f9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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