Skip to content

Instantly share code, notes, and snippets.

@lovubuntu
Created November 24, 2019 12:04
Show Gist options
  • Save lovubuntu/a1de9d1e0b26c9e2189c9015ce425cf0 to your computer and use it in GitHub Desktop.
Save lovubuntu/a1de9d1e0b26c9e2189c9015ce425cf0 to your computer and use it in GitHub Desktop.
Strict mode in developer console of browser
(function()
{
'use strict';
let y = {one: 1, two: 2, three: 3};
Object.freeze(y);
y.one = 234; // This will throw error in console
console.log(y)
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment