How To Use Typeof In Javascript?
JavaScript typeof operator Example: <script> // “string” document.write( typeof ‘mukul’ + “<br>” ) // “number” document.write( typeof 25 + “<br>” ) // “undefined” document.write( typeof variable) </script> Output: string number undefined. How does typeof work in JavaScript? typeof is a JavaScript keyword that will return the type of a variable when you call it. You […]