Hello,
Does anybody know how to get the string number for a string in a key in a dictionary? The manual shows how to add keys and strings, but not how to display the number the string has got.
Like if I have
var d = {4: 5, "A key": "A value", 28: [1, 2, 3]}
How do I know what number 3 in key 28 has got. I know it is 2, but how to retrieve it by code.