Returns the reversed representation of the given string
Optional
the source string to inspect
the starting index, inclusive
the ending index, exclusive
the reversed representation of the given string
David Hsing
reverse('foobar'); // 'raboof'reverse('foobar', 1, 5); // 'aboo' Copy
reverse('foobar'); // 'raboof'reverse('foobar', 1, 5); // 'aboo'
Returns the reversed representation of the given string