0
Explorer
,
/t5/animate-discussions/array-isue/td-p/7088085
May 09, 2015
May 09, 2015
Copy link to clipboard
Copied
how can i trace letters inside an array:
for example if i have an array
var arr:Array = ["dogs", "cats", "oranges", "apples"];
i want to trace what is the third letter of second word (cats)?
answer should be (t)
TOPICS
ActionScript
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 Correct answer
LEGEND
,
May 09, 2015
May 09, 2015
trace(arr[1].charAt(2));
LEGEND
,
LATEST
/t5/animate-discussions/array-isue/m-p/7088086#M152147
May 09, 2015
May 09, 2015
Copy link to clipboard
Copied
trace(arr[1].charAt(2));
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

