|
|
|
|
|
by devld
16 days ago
|
|
> I just assumed that readonly properties will always be pretty performant in general. This is also the case for variables. var is faster than const, because for const (and let) the engine must do additional work (related to enforcing block-level scope, if I am not mistaken). |
|
Which is to say that if someone tells you that you should in general never use const/let for "performance" they are probably wrong, but yes there probably are still edge cases and microbenchmarks that make var look faster on some engines.