String reversa usando o método split () para converter nossa string em uma matriz

var stringToArray = "softhunt".split("");
["s", "o", "f", "t", "h", "u", "n", "t"]
Outrageous Ostrich