Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

String []

Example

Code Block
languagejs
number []arr;
arr["one"] = 1;
arr["two"] = 2;
arr["three"] = 3;
arr[3] = 4;

string [] arrkeys = arrayKeys(arr); // contains strings 'one', 'two', 'three' but not necessary in that order !

...