Continuing the discussion from Store Values in Dynamically Created Variables?:
@peternlewis, many thanks for adding this new variable/object type. It will be really useful.
For all, here’s the KM Wiki on this: Dictionaries
Can this be used with an array, like in JavaScript?
var peopleList = [
{FName: "John", LName: "Smith"},
{FName: "Mary", LName: "Jones"}
];
console.log(peopleList[1].LName);
//-->Jones
How would I create the above in KM8?