TechieDrill Your World Of Technical Tutorials

Posts Tagged ‘with’

Javascript: With Statement

11.13.2009 · Posted in JavaScript

The with statement allows you to access the methods and properties of an object without having to specify the name of the object on every line.Without the with statement, you will always need to specify the name of the object you are working on next to every property or method you wish to access: With statement allows to access ...