숫자 자료형으로 변환하기
다른 자료형을 숫자 자료형으로 변활할 때는 Number() 함수를 사용
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script>
//prompt 로 입력을 받으면 기본형이 문자열.
const rawInput = prompt("inch 단위의 숫자를 입력해주세요."); //숫자를 입력
console.log(typeof rawInput); //string
// 입력받은 데이터를 숫자형으로 변경하고 cm 단위로 변경
const inch = Number(rawInput); //number
console.log(typeof inch); //number
const cm = inch * 2.54;
//출력
alert(inch + " inch는 " + cm + " cm 입니다.");
</script>
</head>
<body>
</body>
</html>