Skip to content

Instantly share code, notes, and snippets.

@hochan222
Created January 18, 2022 04:35
Show Gist options
  • Save hochan222/6420aff427f61c39375aa65a43630034 to your computer and use it in GitHub Desktop.
Save hochan222/6420aff427f61c39375aa65a43630034 to your computer and use it in GitHub Desktop.
javascript checkType
function checkType(variable) {
return Object.prototype.toString.call(variable).slice(8,-1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment