๐Ÿ“šย Reference


๐Ÿ“œย Chapter


โ€˜use strictโ€™

with


with - ์—ญํ• 


์˜ˆ์‹œ


์˜ˆ์‹œ 1

// 'with' ๋ฌธ ์‚ฌ์šฉ ์ „
const person = {
  name: '์ง€๋‹ˆ',
  age: 30,
  city: '์„œ์šธ'
};

console.log(person.name);
console.log(person.age);
console.log(person.city);

// 'with' ๋ฌธ ์‚ฌ์šฉ ํ›„
const person = {
  name: '์ง€๋‹ˆ',
  age: 30,
  city: '์„œ์šธ'
};

with (person) {
  console.log(name);
  console.log(age);
  console.log(city);
}