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

10 lines
266 B
JavaScript
Raw Normal View History

2023-11-04 11:05:11 +00:00
const reverseString = function(str) {
let stringIntoArray = str.split("");
let arrayReverse = stringIntoArray.reverse();
let arrayIntoString = arrayReverse.join("");
return arrayIntoString;
};
2023-11-04 11:05:11 +00:00
reverseString('hello');
module.exports = reverseString;