Answered
array isue
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)
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)
trace(arr[1].charAt(2));
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.