var a = {b: 1} with (a) { b = 2; c = 3; } console.log(a.b); // всё ок console.log(a.с); // undefined ?! Оо