← Back to Question List
JavaScript Code Walkthrough #3
typeof a String
📄 Code
Read carefully — what does this print?1const value = "hello";2console.log(typeof value);
1const value = "hello";2console.log(typeof value);