Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created February 24, 2020 01:04
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 BetterProgramming/8561c37997b7a66c310bac3f6483be83 to your computer and use it in GitHub Desktop.
Save BetterProgramming/8561c37997b7a66c310bac3f6483be83 to your computer and use it in GitHub Desktop.
let obj = {
foo: {
bar: {
baz: 1
}
}
}
with(obj.foo.bar) {
baz = 2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment