vote up 16 vote down star
4

Alan Storm's comments in response to my answer regarding the with statement got me thinking. I've seldom found reason to use this particular language feature, and had never given much thought to how it might cause trouble. Now, i'm curious as to how i might make effective use of with, while avoiding its pitfalls...

So my question is, where have you found the with statement useful?

flag
this is a good question, I'd never really considered the implications before... – matt lohkamp Oct 6 '08 at 23:51
1  
I never use it. It's easer to live without it if I pretend it doesn't exist. – Nosredna Jun 22 at 18:23

14 Answers

vote up 38 vote down

Another use occurred to me today, so i searched the web excitedly and found an existing mention of it: Defining Variables inside Block Scope.

Background

JavaScript, in spite of its superficial resemblance to C and C++, does not scope variables to the block they are defined in:

var name = "Joe";
if ( true )
{
   var name = "Jack";
}
// name now contains "Jack"

Declaring a closure in a loop is a common task where this can lead to errors:

for (var i=0; i<3; ++i)
{
   var num = i;
   setTimeout(function() { alert(num); }, 10);
}

Because the for loop does not introduce a new scope, the same num - with a value of 2 - will be shared by all three functions.

A new scope: let and with

With the introduction of the let statement in JavaScript 1.7, it becomes easy to introduce a new scope when necessary to avoid these problems:

for (var i=0; i<3; ++i)
{
   // variables introduced in this statement 
   // are scoped to the block following it.
   let (num = i) 
   {
      setTimeout(function() { alert(num); }, 10);
   }
}

But until other browsers implement it, this will remain limited to Mozilla-targeted code. However, we can easily simulate this behavior using with:

for (var i=0; i<3; ++i)
{
   // object members introduced in this statement 
   // are scoped to the block following it.
   with ({num: i})
   {
      setTimeout(function() { alert(num); }, 10);
   }
}

The loop now works as intended, creating three separate variables with values from 0 to 2. Note that variables declared within the block are not scoped to it - this is identical to the behavior of let, but unlike the behavior of blocks in C++ (in C, variables must be declared at the start of a block, so in a way it is similar).

link|flag
Never thought of using with with a literal, seems legit. – Matt Kantor Dec 20 '08 at 5:47
This is really really dead on. I've never thought of playing with JavaScript's scope this way. Totally expanded new areas to my coding. I wish I could upvote 10 times! – kizzx2 Jun 22 at 18:28
This is incredibly clever and solves a real problem! – erikkallen Oct 9 at 20:38
vote up 13 vote down

You can define a small helper function to provide the benefits of with without the ambiguity:

var with_ = function (obj, func) { func (obj); };

with_ (object_name_here, function (_)
{
    _.a = "foo";
    _.b = "bar";
});
link|flag
OMG, MY HEAD EXPLODED! without the ambiguity? Gotta vote that up, man! – Jarrod Dixon Feb 13 at 4:32
@Jarrod: what is so funny about this (is.gd/ktoZ)? Most everyone who uses this site is smarter than me, so forgive me if I am wrong, but this seems like bad information. – raven Feb 22 at 22:32
But that's just longer and harder to understand way of doing: var _ = obj_name_here; _.a="foo"; _.b="bar; – Rene Saarsoo Mar 9 at 10:04
Rene: With that, you will expose the "_" variable to the outer scope, resulting in potential bugs. It will also expose any temporary variables used in calculating object parameters. – John Millikin Mar 10 at 4:59
vote up 11 vote down

As my previous comments indicated, I don't think you can use with safely no matter how tempting it might be in any given situation. Since the issue isn't directly covered here, I'll repeat it. Consider the following code

user = {};
someFunctionThatDoesStuffToUser(user);
someOtherFunction(user);

with(user){
    name = 'Bob';
    age  = 20;
}

Without carefully investigating those function calls, there's no way to tell what the state of your program will be after this code runs. If user.name was already set, it will now be Bob. If it wasn't set, the global name will be initialized or changed to Bob and the user object will remain without a name property.

Bugs happen. If you use with you will eventually do this and increase the chances your program will fail. Worse, you may encounter working code that sets a global in the with block, either deliberately or through the author not knowing about this quirk of the construct. It's a lot like encountering fall through on a switch, you have no idea if the author intended this and there's no way to know if "fixing" the code will introduce a regression.

Modern programming languages are chocked full of features. Some features, after years of use, are discovered to be bad, and should be avoided. Javascript's with is one of them.

link|flag
This problem only surfaces when you are assigning values to attribute of the object. But what if you are using it only to read values? I contend that it's okay to use it in that case. – toby Sep 22 at 19:33
The same problem applies to reading the values Toby. In the above code snippet you don't know if name is is set on the user object, so you wouldn't know if you were reading the global name, or the user name. – Alan Storm Sep 22 at 19:38
With reading values there's a clear precedence rule: attributes on the object are checked before variables outside the scope. This isn't any different from variables scoping in functions. The real problem with assignment and 'with', as I understand it, lies in the fact that whether or not the attribute assignment occurs depends on whether the attribute exists on the current object in question, which is a runtime property and cannot be deduced easily by looking at the code. – toby Sep 22 at 19:46
I think you may be right there Toby. The write problem is enough for me to shy away from the construct entirely. – Alan Storm Sep 23 at 16:40
vote up 11 vote down

Hardly seems worth it since you can do the following:

var o = incrediblyLongObjectNameThatNoOneWouldUse;
o.name = "Bob";
o.age = "50";
link|flag
vote up 3 vote down

I have been using the with statement as a simple form of scoped import. Let's say you have a markup builder of some sort. Rather than writing:

markupbuilder.div(
  markupbuilder.p('Hi! I am a paragraph!',
    markupbuilder.span('I am a span inside a paragraph')
  )
)

You could instead write:

with(markupbuilder){
  div(
    p('Hi! I am a paragraph!',
      span('I am a span inside a paragraph')
    )
  )
}

For this use case, I am not doing any assignment, so I don't have the ambiguity problem associated with that.

link|flag
That's pretty slick! – Shog9 Sep 23 at 4:13
vote up 2 vote down

Visual Basic.NET has a similar With statement. One of the more common ways I use it is to quickly set a number of properties. Instead of:

someObject.Foo = ''
someObject.Bar = ''
someObject.Baz = ''

, I can write:

With someObject
    .Foo = ''
    .Bar = ''
    .Baz = ''
End With

This isn't just a matter of laziness. It also makes for much more readable code. And unlike JavaScript, it does not suffer from ambiguity, as you have to prefix everything affected by the statement with a . (dot). So, the following two are clearly distinct:

With someObject
    .Foo = ''
End With

vs.

With someObject
    Foo = ''
End With

The former is someObject.Foo; the latter is Foo in the scope outside someObject.

I find that JavaScript's lack of distinction makes it far less useful than Visual Basic's variant, as the risk of ambiguity is too high. Other than that, with is still a powerful idea that can make for better readability.

link|flag
True enough. Doesn't answer his question though. So it's off topic. – Allain Lalonde Apr 20 at 13:28
vote up 2 vote down

Having experience with Delphi, I would say that using with should be a last-resort size optimization, possibly performed by some kind of javascript minimizer algorithm with access to static code analysis to verify its safety.

The scoping problems you can get into with liberal use of the with statement can be a royal pain in the a** and I wouldn't want anyone to experience a debugging session to figure out what the he.. is going on in your code, only to find out that it captured an object member or the wrong local variable, instead of your global or outer scope variable which you intended.

The VB with statement is better, in that it needs the dots to disambiguate the scoping, but the Delphi with statement is a loaded gun with a hairtrigger, and it looks to me as though the javascript one is similar enough to warrant the same warning.

link|flag
The javascript with statement is worse than the Delphi one. In Delphi, with performs just as fast (if not faster) than object.member notation. In javascript, with has to walk the scope to check for matching members, thus always making it slower than object.member notation. – Martijn Jun 5 at 13:56
vote up 2 vote down

Using with also makes your code slower in many implementation, as everything now gets wrapped in an extra scope for lookup. There's no legitimate reason for using with in JavaScript.

link|flag
vote up 2 vote down

I don't ever use with, don't see a reason to, and don't recommend it.

The problem with with is that it prevents numerous lexical optimizations an ECMAScript implementation can perform. Given the rise of fast JIT-based engines, this issue will probably become even more important in the near future.

It might look like with allows for cleaner constructs (when, say, introducing a new scope instead of a common anonymous function wrapper or replacing verbose aliasing), but it's really not worth it. Besides a decreased performance, there's always a danger of assigning to a property of a wrong object (when property is not found on an object in injected scope) and perhaps erroneously introducing global variables. IIRC, latter issue is the one that motivated Crockford to recommend to avoid with.

link|flag
The performance bogeyman gets trotted out frequently, almost as often as the globals thing... Always strikes me as odd, given that it's JavaScript we're talking about. You'd assume that the performance hit is truly dramatic to warrant that much attention, but... If you have any hard numbers on the cost of with(){} constructs like those given in other answers here, in modern browsers, I'd love to see them! – Shog9 Sep 23 at 5:02
2  
Why is it odd in context of Javascript? :) And yes, it is dramatic. Think about it - an implementation needs to evaluate an expression in parenthesis, convert it to object, insert it into the front of the current scope chain, evaluate statement inside the block, then restore scope chain back to normal. That's a lot of work. Much more than a simple property lookup that can be turned into a highly-optimized low level code. Here's a very simple benchmark I just made (let me know if you find any mistakes) demonstrating the difference - gist.github.com/c36ea485926806020024 – kangax Sep 23 at 5:50
@kangax: I come from a C++ background, where it's sort of traditional for many programmers to obsess about small efficiencies in their code, even when they don't actually have a noticeable effect on the performance of the larger routine or program. It seems odd to me in the context of JavaScript, where such a large part of a routine's performance can depend on the VM implementation. I've seen a few instances where JS programmers will avoid, say, an anonymous function due to concerns over the setup cost, but this seems to be the exception not the rule, reserved for very sensitive areas of code. – Shog9 Sep 27 at 15:40
That said, you're absolutely correct with regard to the cost of with(){}: setting up a new scope with with is hugely expensive on every browser I tested. You'd want to avoid this in any code called very frequently. In addition, Chrome exhibited a dramatic hit for any code executing within a with() scope. Interestingly, IE had the best performance characteristics for code within with() blocks: factoring out the setup cost, with() provides the fastest means of member access in IE6 and IE8 VMs (though these VMs are the slowest overall). Good stuff, thanks... – Shog9 Sep 27 at 15:47
FWIW: here's the same set of tests with setup costs factored out: jsbin.com/imidu/edit Variable access for with() is almost an order of magnitude slower in Chrome, and over twice as fast in IE...! – Shog9 Sep 27 at 16:01
vote up 1 vote down

I think that the usefulness of with can be dependent on how well your code is written. For example, if you're writing code that appears like this:

var sHeader = object.data.header.toString();
var sContent = object.data.content.toString();
var sFooter = object.data.footer.toString();

then you could argue that with will improve the readability of the code by doing this:

var sHeader = null, sContent = null, sFooter = null;
with(object.data) {
    sHeader = header.toString();
    sContent = content.toString();
    sFooter = content.toString();
}

Conversely, it could be argued that you're violating the Law of Demeter, but, then again, maybe not. I digress =).

Above all else, know that Douglas Crockford recommends not using with. I urge you to check out his blog post regarding with and its alternatives here.

link|flag
Thanks for the response, Tom. I've read Crockford's recommendation, and while it makes sense it only goes so far. I'm coming around to the idea - touched on indirectly by doekman - that the real power of with{} is in the way it can be used to manipulate scope... – Shog9 Oct 7 '08 at 0:18
vote up 0 vote down

I just really don't see how using the with is any more readable than just typing object.member. I don't think it's any less readable, but I don't think it's any more readable either.

Like lassevk said, I can definitely see how using with would be more error prone than just using the very explicit "object.member" syntax.

link|flag
vote up 0 vote down

I think the with-statement can come in handy when converting a template language into JavaScript. For example JST in base2, but I've seen it more often.

I agree one can program this without the with-statement. But because it doesn't give any problems it is a legitimate use.

link|flag
vote up 0 vote down

Yes, yes and yes. There is a very legitimate use. Watch:

with (document.getElementById("blah").style) {
    background = "black";
    color = "blue";
    border = "1px solid green";
}

Basically any other DOM or CSS hooks are fantastic uses of with. It's not like "CloneNode" will be undefined and go back to the global scope unless you went out of your way and decided to make it possible.

Crockford's speed complaint is that a new context is created by with. Contexts are generally expensive. I agree. But if you just created a div and don't have some framework on hand for setting your css and need to set up 15 or so CSS properties by hand, then creating a context will probably be cheaper then variable creation and 15 dereferences:

var element = document.createElement("div"),
    elementStyle = element.style;

elementStyle.fontWeight = "bold";
elementStyle.fontSize = "1.5em";
elementStyle.color = "#55d";
elementStyle.marginLeft = "2px";

etc...

link|flag
vote up -4 vote down

I think the obvious use is as a shortcut. If you're e.g. initializing an object you simply save typing a lot of "ObjectName." Kind of like lisp's "with-slots" which lets you write

(with-slots (foo bar) objectname
   "some code that accesses foo and bar"

which is the same as writing

"some code that accesses (slot-value objectname 'foo) and (slot-value objectname 'bar)""

It's more obvious why this is a shortcut then when your language allows "Objectname.foo" but still.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.