Roku Developer Program

Join our online forum to talk to Roku developers and fellow channel creators. Ask questions, share tips with the community, and find helpful resources.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
sharkieSBS
Newbie

Is Array Reverse() always <UNINITIALIZED>?

I'm passing an ISO 8601 formatted date string to a Function, and then manipulating it. 

I can `Split()` it, and the split creates an Array, and I can use bracket notion on it as expected.

But my attempts to `Reverse()` the Array only manage in my getting an `<UNINITIALIZED>` response.

Function getDate(timestamp as String) as Object
  datestamp = timestamp.Split("T")[0]
  dateArray = datestamp.Split("-")
  yarrAetad = dateArray.Reverse()

  ? timestamp
  ? Type(timestamp)
  ? dateArray
  ? Type(dateArray)
  ? yarrAetad

  ' return dateArray
  return true
end Function


and the Console logs:

2018-11-17T15:20:00Z
String
<Component: roArray> =
[
    "17"
    "11"
    "2018"
]
roArray
<UNINITIALIZED>


I can work around the issue, obviously, but I wondered if there was something I needed to do programmatically to get the correct response from my code?
_______________________________________________________________________________
Craig Sharkie
Connected TV Lead, Engineering – EDS & OD
sbs.com.au
0 Kudos
2 REPLIES 2
renojim
Community Streaming Expert

Re: Is Array Reverse() always <UNINITIALIZED>?

You're not using Reverse() correctly.  Reverse() returns Void, so you're setting yarrAetad to nothing.  Reverse() acts on the array itself, so if you want to keep the original and the reversed array, you'll have to copy the array entry by entry to a new array and then Reverse() the new array.  If you're not interested in the original, just do this:
dateArray = datestamp.Split("-")
dateArray.Reverse()
?dateArray

-JT
Roku Community Streaming Expert

Help others find this answer and click "Accept as Solution."
If you appreciate my answer, maybe give me a Kudo.

I am not a Roku employee.
0 Kudos
sharkieSBS
Newbie

Re: Is Array Reverse() always <UNINITIALIZED>?

If I had an up-vote, you'd get it JT.

Thanks!
_______________________________________________________________________________
Craig Sharkie
Connected TV Lead, Engineering – EDS & OD
sbs.com.au
0 Kudos