odin-default-js-exercises/03_reverseString/solution/reverseString-solution.js

6 lines
124 B
JavaScript
Raw Normal View History

2022-02-20 19:07:44 +00:00
const reverseString = function (string) {
2023-01-21 17:53:41 +00:00
return string.split("").reverse().join("");
2022-02-20 19:07:44 +00:00
};
module.exports = reverseString;