reverse

Returns the reverse of its string argument.

Example

Applying

reverse('abc')

produces cba.

Syntax

reverse(string str)
  • str : string to reverse

    Returns

    string

Notes

Takes the string str and reverses the order of the characters such that the last is first, second to last is second and so on.


© Incorta, Inc. All Rights Reserved.