var str = '0'; alert(typeof str); alert(Boolean(str)); alert('0' === false); alert(typeof !str); alert(!str); alert(typeof !!str); alert(!!str);