Live data from Hacker News

JavaScript Static vs. Dynamic Object

jsperf.app

1–2 of 2 posts

Re: JavaScript Static vs. Dynamic Object

#2
v8 at least will convert a javascript object to a dictionary (from a struct) the first time you delete. it starts as a struct as a performance optimization, but if you are using that object as a read/write dictionary a lot the conversion might start to pay off:

https://stackoverflow.com/a/59432008