To see why, let’s look at the following function:
function foo(someArray) { var values = ...; // (1) with (someArray) { ... values.someMethod(...); // (2) ... } } var myData = ...; foo(myData); // (3)You can prevent the function call in line (3) from working, even if you don’t have access to the array myData.
How? By adding a property to Array.prototype. For example:
Array.prototype.values = function () { ... };Now the code in line (2) calls someArray.values.someMethod() instead of values.someMethod(). The reason for that is that, inside the with statement, values now refers to someArray.values and not the local variable from line (1), any more.
This is not just a thought experiment, an array method values was recently added to Firefox and broke the TYPO3 content management system. Brandon Benvie (comment 13) figured out what went wrong.
Reference: