const reverse = x => {
// 여기에 코드를 작성해주세요.
let result="";
let array = x.toString().split("");
if(array[0] === "-"){ // 음수일 때
result = "-";
for(let i=array.length-1; i>0; i--){
result += array[i];
}
return Number(result);
}else{ // 정수일 때
for(let i=array.length-1; i>=0; i--){
result += array[i];
}
return Number(result);
}
}
console.log(reverse(12340));
console.log(reverse(-12340));