context = { foo: 1, bar: 2 }; with (context) { foo = 2; bar = 3; }
context = { foo: 1 }; with (context) { foo = 2; bar = 3; }
In short, 'with' is pointy on both ends.
In short, 'with' is pointy on both ends.