JavaScript 변수는 유형이 지정되지 않지만 값에는 유형이 있습니다. 동일한 변수에 새 값을 할당할 수 있습니다.
예시
라이브 데모
<!DOCTYPE html> <html> <body> <script> var a; document.write(typeof a+"\r\n"); a = true; document.write(typeof a+"\r\n"); a = 5; document.write(typeof a+"\r\n"); a = "web"; document.write(typeof a+"\r\n"); </script> </body> </html>