In JavaScript, we have many ways to reverse a string. In this article, I will be showing the easiest way to
Let's go... 🏁
🎉
Probably, the simplest way to reverse a string is to split string to an array, reverse()
it and join()
let string = "live"
string = [...string].reverse().join("")
console.log(string)
Thank you for reading, have a nice day!
- Follow me on Twitter - @codewithsnowbit
- Subscribe me on YouTube - Code With SnowBit Cover Photo by 愚木混株 cdd20 on Unsplash
Top comments (0)