Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
342 views
in Technique[技术] by (71.8m points)

arrays - What is the difference between giving character with quotes as key and just character as key of property of an object in javascript


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Regarding your first question: there is no difference between your 1st and 2nd example.

For your second question, let's look at this small example:

charCount = { a: 2, b:3 }
char = 'a'
print(charCount[char]) // 2
print(charCount.char) // error

As pointed out in the comment, when you call charCount[char], it will dynamically access object property using variable. What it does is just simply replace the variable char with its current value (which is a in this case). So, the call becomes charCount['a'], and you got the result.

When you call charCount.char, it literally tries to access the property named char of the object charCount. In this case, that property does not exist, which is why you got an error.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...