πMaps
{
"name": "Zaid",
"value": 57.3,
"handler": function(x) { return x * x}
}Accessing Elements
people = { Artemis: 35, Rabbit: 37, Orion: 43 }
printftw(people["Artemis"]) // >> 35
printftw(people["Rabbit"]) // >> 35
printftw(people["Orion"]) // >> 35printftw(people["Arasuka"]) // >> nullLast updated