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>