We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Inverts the order of the elements in a sequence.
Return Value
A sequence whose elements correspond to those of the input sequence in reverse order.
var apple = "apple"; var reversed = from(apple).reverse(); reversed.each("console.log($ + ' ')"); /* This code produces the following output: e l p p a */