vote up 1 vote down star

is this part of the native javascript lib? which browser support it?

flag

57% accept rate

4 Answers

vote up 2 vote down check

It's part of the JavaScript 1.5 specification. So it must be supported by major browser.

link|flag
The new ECMAScript 5 edition removes the with statement in strict mode. Future versions will probably remove it altogether. – Ionut G. Stan Aug 18 at 15:55
vote up 3 vote down

Yes it is part of it. Every browser that supports JavaScript 1.5 supports it (that is all major browsers, or grade A).

However, it is not recommended to use the with statement.

link|flag
+1. with() just isn't worth the hassle, especially since you can accomplish pretty much the same thing more explicitly using var d = a.b.c; d.attribute = ...; – Grant Wagner Aug 18 at 16:11
vote up 1 vote down

Not a part of any native JS spec I've ever seen, and some quick Google-fu yields no result either. Not to say it isn't in there somewhere, but I'd guess that if it exists it's not well documented or supported.

Edit: beaten to the punch by Philippe, and apparently my answer is wrong. I'll leave it here for humility's sake, though. ;)

link|flag
Nelson says: "HA! HA!" – Arnis L. Aug 18 at 13:31
vote up 0 vote down

Beware that JavaScript's with statement should be avoided.

See: with Statement Considered Harmful

link|flag

Your Answer

Get an OpenID
or

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