DEV Community

Discussion on: #7DaysJS: Reverse a String

Collapse
 
bharath_bheemireddy profile image
Bharath_Bheemireddy

const reverseString = str => str.split('').reverse().join('');
Collapse
 
lautarolobo profile image
Lautaro Lobo

That's I think the best way to do it!