Javascript property access speed: difference var.property vs. var[“property”]?

后端 未结 3 1218
野的像风
野的像风 2021-01-18 12:35

I have a very basic JavaScript question.

I am writing a program which will generate JavaScript code. for accessing a property of a variable i have two choices:

3条回答
  •  遇见更好的自我
    2021-01-18 13:02

    Emphazise code reusability and maintainability. When you are done, and IF it runs slow, try to see WHERE it is running slow and better it.

    So, is there any difference between object.property and obj["property"] in terms of eficciency? I don't think so, but mostly I don't think you should bother until you have encountered a performance issue with your finished, working code. This last part should be your worry.

    And even if you find out that your code runs slow, I bet you this will NOT be the reason.

提交回复
热议问题