1.创建
var myBoolean=new Boolean();
2.方法
toString()把布尔值转换为字符串,并返回结果
valueOf()返回 Boolean 对象的原始值。
3.属性
1.constructor返回对创建此对象的 Boolean 函数的引用
2.prototype向对象添加属性和方法。
Boolean.prototype.方法名=function(){ 方法体 }
var myBoolean=new Boolean();
toString()把布尔值转换为字符串,并返回结果
valueOf()返回 Boolean 对象的原始值。
1.constructor返回对创建此对象的 Boolean 函数的引用
2.prototype向对象添加属性和方法。
Boolean.prototype.方法名=function(){ 方法体 }