Skip to content

Instantly share code, notes, and snippets.

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