Skip to content

Instantly share code, notes, and snippets.

@IsTheJack
Created August 30, 2018 13:24
Show Gist options
  • Save IsTheJack/641b85fa2d5247314795fbbc81b676d4 to your computer and use it in GitHub Desktop.
Save IsTheJack/641b85fa2d5247314795fbbc81b676d4 to your computer and use it in GitHub Desktop.
Dado o construtor booleano. Quais o resultados esperados nas linhas 6, 7 e 8? Você conhece outras formas de fazer coerção de tipo em JS?
// Boolean type coercion
Boolean(0) // false
Boolean(1) // true
Boolean(undefined) // ?
Boolean(' ') // ?
Boolean([]) // ?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment