문제

Been searching for about an hour, everything I see on dot notation is pieced out with little explanation, or it's a post of people arguing about that and bracket notation... I just want a site or book, I will buy a book... ...that has a lot of info on Dot Notation. Thanks for taking a look at my post!!

도움이 되었습니까?

해결책

Have you seen this link?

There is also the ECMAScript documentation that indicates:

The dot notation is explained by the following syntactic conversion:

MemberExpression.IdentifierName

is identical in its behaviour to

MemberExpression[<identifier-name-string>]

Also see the Objects section of this javascript article written by Douglas Crockford.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top