odin-default-js-exercises/03_reverseString
Fredrik Uddenfeldt fb96215bc6 PASSED ALL TESTS 2023-05-17 22:00:23 +02:00
..
solution Remove test skips for solutions 2023-02-01 18:58:58 -05:00
README.md Remove redundant wording in reverse string README 2023-03-18 14:14:44 -05:00
reverseString.js PASSED ALL TESTS 2023-05-17 22:00:23 +02:00
reverseString.spec.js PASSED ALL TESTS 2023-05-17 22:00:23 +02:00

README.md

Exercise 03 - Reverse a String

Pretty simple, write a function called reverseString that returns its input, reversed!

reverseString('hello there') // returns 'ereht olleh'

Hints

Strings in JavaScript cannot be reversed directly so you're going to have to split it into something else first.. do the reversal and then join it back together into a string.