We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
var a = {}; a.b; // undefined
여기서 b는 선언도 안됐는데 왜 undefiend인가요 ?
The text was updated successfully, but these errors were encountered:
객체 속성에 접근할 때 나오는 undefined 는 속성이 존재하지않음을 의미한다고 합니다. 그냥 자바스크립트에서 정해놓은 것 같아요.
undefined
[reference] https://poiemaweb.com/js-object https://ko.javascript.info/object https://ko.khanacademy.org/computing/computer-programming/programming/objects/a/review-objects
Sorry, something went wrong.
jinsunee
No branches or pull requests
여기서 b는 선언도 안됐는데 왜 undefiend인가요 ?
The text was updated successfully, but these errors were encountered: