← Back to Question List
JavaScript Code Walkthrough #16
typeof on Different Values
📄 Code
Read carefully — what does this print?1let x;2console.log(typeof x);3console.log(typeof 42);4console.log(typeof true);