/ Published in: ActionScript 3
One line of code to reverse a string
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
var reversedString:String = originalString.split("").reverse().join("");