Ad
Code
Diff
  • function reverseGear(word){
      //put your code here
      word.split("")
      word.reverse()
      word.join("")
      return word
    }
    • function reverseGear(word){
    • //put your code here
    • word.split("")
    • word.reverse()
    • word.join("")
    • return word
    • }