Convert string to boolean
suggest changeTo convert a string to boolean use
Boolean(myString)
	or the shorter but less clear form
!!myString
	All strings except the empty string (of length zero) are evaluated to true as booleans.
Boolean('') === false   // is true
Boolean("") === false   // is true
Boolean('0') === false  // is false
Boolean('any_nonempty_string') === true // is true
	
  Found a mistake? Have a question or improvement idea?
  Let me know.
      
      Table Of Contents