Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Array := Object()
- Array["a"] := "Apples"
- Array["b"] := "Bannas"
- Array["b"] := "bottles"
- Array["b"] := "bees"
- Array["c"] := "Cucumber"
- ; Count the index (Can I do this without doing a forloop?)
- ArrayCount := 0
- for index, in Array
- ArrayCount++
- msgbox % "The Primary Index (Letter) count is = " ArrayCount
Advertisement
Add Comment
Please, Sign In to add comment