문장이 입력되면 거꾸로 출력하는 프로그램을 만들어 봅시다.

**입출력**

입력 : 거꾸로
출력 : 로꾸거

풀이

const word = prompt("단어를 입력해주세요");

console.log(word.split("").reverse().join(""));