Blog.init();


A technical blog on Computer Science and Software Development topics by Tomás Pérez.


Tag: data structures


  1. Maps in Harmony

    In old-school Javascript key/value storages can be defined using simple objects {}, however performance wise have some drawbacks compared to the new data structures present in Harmony: Maps and Sets. The Map object is a simple key/value map, any value (objects or primitives) can be used as either a…

    javascript, data structures