The easiest way to reverse a string in JavaScript is to convert the string to an array, and then use `Array#reverse()`.
However, we recommend using `Array.from()`, not `Array#split()`, because of UTF-16 characters.
masteringjs.io/tutorials/fun…
#JavaScript #CodeNewbie