Boolean.toSource() - повертає рядок з вихідним кодом об'єкту.
bolObj.toSource();
Boolean.toSource();
bolObj - об'єкт Boolean.
toSource() метод об'єкту Boolean який повертає рядок з вихідним кодом об'єкту.
Метод toSource() не є стандартом і не усі браузери підтримують.
if(Boolean.toSource){
var b=new Boolean(true);
alert(b.toSource());
}alert("ваш браузер Не підтримує Boolean.toSource");
if(Boolean.toSource){
alert(Boolean.toSource());
}else alert("Ваш браузер НЕ підтримує Boolean.toSource");