<code>function Customer(name) { var risk = 0; this.name = name; } var customer = new Customer("aa"); console.log(customer.name); // aa console.log(customer.risk); // undefined </code>
customer.risk에는 액세스할 수 없지만 customer.name에는 액세스할 수 있는 이유는 무엇입니까?
risk는 누구의 개인 변수입니까? 그렇다면 고객은 왜 자신의 개인 변수에 액세스할 수 없습니까?