Created
September 12, 2020 09:57
-
-
Save obetame/c08fca51a0349feb99a91db627d74b73 to your computer and use it in GitHub Desktop.
This file contains 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
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