/** A Quick Example! 🐶 */ //➜ "dog" const text = echo("dog"); //➜ [ "d", "o", "g" ] const chars = echo(text.split("")); //➜ "god" echo(chars.slice().reverse().join(""));