原创 JS中字符串轉化爲boolean類型

Boolean(邏輯)對象用於將非邏輯值轉換爲邏輯值(true 或者 false)。 var a="True"; a = Boolean(a); alert(typeof a);