/** * First Reverse * Have the function FirstReverse(str) take the str parameter * being passed and return the string in reversed order. * For example: if the input string is "Hello World and Coders" * then your program should return the string sredoC dna dlroW olleH. * * Test Cases * > firstReverse "Hello World and Coders" * "sredoC dna dlroW olleH" * * > firstReverse "coderbyte" * "etybredoc" */ function firstReverse(str) { return str .split("") .reverse() .join(""); }