-
Notifications
You must be signed in to change notification settings - Fork 15
JSArray.Reverse
boxgaming edited this page Jul 25, 2026
·
2 revisions
Reverses the order of the elements in an array.
JSArray.Reverse a
- The a parameter contains the native JavaScript array on which the operation will be performed.
Import JSArray From "lib/lang/array.bas"
Dim numbers As Object
numbers = JSArray.Create("one", "two", "three")
JSArray.Reverse numbers
Print numbersthree,two,one