Skip to content

Instantly share code, notes, and snippets.

@ranamahmud
Created November 3, 2020 13:29
Show Gist options
  • Save ranamahmud/48ef963c567493914b6374f03e124bca to your computer and use it in GitHub Desktop.
Save ranamahmud/48ef963c567493914b6374f03e124bca to your computer and use it in GitHub Desktop.
console.log(typeof(19));
// number
console.log(typeof(undefined));
// undefined
typeof("Hello World!");
"string"
console.log(typeof true);
// boolean
console.log(typeof {});
// object
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment