Skip to content

Instantly share code, notes, and snippets.

@divyanshu013
Created October 7, 2018 17:19
Show Gist options
  • Save divyanshu013/ce7441acfdc754b757cf2324ada7dfeb to your computer and use it in GitHub Desktop.
Save divyanshu013/ce7441acfdc754b757cf2324ada7dfeb to your computer and use it in GitHub Desktop.
javascript wtf

Filter out truthy values

const array = ['a', 1, null, ''].filter(Boolean); // ['a', 1]
// filters out truthy values

Flush promises wait

const flushPromises = () => new Promise(resolve => {
  setTimeout(resolve, 0)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment