Skip to content

Instantly share code, notes, and snippets.

@uyriq
Created September 18, 2022 17:41
Show Gist options
  • Save uyriq/ffe4ae6d2bc7cb673f605e19f98c5b2a to your computer and use it in GitHub Desktop.
Save uyriq/ffe4ae6d2bc7cb673f605e19f98c5b2a to your computer and use it in GitHub Desktop.
obj or not obj?
if (
typeof yourVariable === 'object' &&
!Array.isArray(yourVariable) &&
yourVariable !== null
) {
executeSomeCode();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment