Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created November 28, 2018 09:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save debugmodedotnet/d82f058472d9c81c4ca9b6d48f8a2d58 to your computer and use it in GitHub Desktop.
Save debugmodedotnet/d82f058472d9c81c4ca9b6d48f8a2d58 to your computer and use it in GitHub Desktop.
'use strict'
var cat = {
name:'foo',
age: 9
}
Object.preventExtensions(cat);
cat.color ='black';
console.log(cat.color); // error thrown
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment