Skip to content

Instantly share code, notes, and snippets.

@bobdobbalina
Created January 20, 2021 19:26
Show Gist options
  • Save bobdobbalina/b9ea2d970ba8dd33346abc332847cc0a to your computer and use it in GitHub Desktop.
Save bobdobbalina/b9ea2d970ba8dd33346abc332847cc0a to your computer and use it in GitHub Desktop.
Javascript: Get the native type of any value
const nativeType = v =>
v === undefined ? 'undefined' : v === null ? 'null' : v.constructor.name.toLowerCase();
nativeType(new Set([1, 2, 3])); // set
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment