Skip to content

Instantly share code, notes, and snippets.

@obetame
Created September 12, 2020 09:57
Show Gist options
  • Save obetame/c08fca51a0349feb99a91db627d74b73 to your computer and use it in GitHub Desktop.
Save obetame/c08fca51a0349feb99a91db627d74b73 to your computer and use it in GitHub Desktop.
const obj = {
a: 1,
b: 2,
c: 3,
};
with (obj) {
d = 4;
}
console.log(obj) // output: {a: 1, b: 2, c: 3}
console.log(window.d); // output: 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment