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

6 lines
126 B
JavaScript
Raw Normal View History

2022-02-20 19:07:44 +00:00
const reverseString = function (string) {
return string.split('').reverse().join('');
};
module.exports = reverseString;