5. 2. 4. Boolean.toSource() |
|
Syntax |
|
The toSource() method returns one string representing the source of the Boolean object. |
The string that is returned is enclosed in with parentheses. |
The following example accesses the Source of a Boolean Object with the toSource() Method |
<html>
<script language="JavaScript">
<!--
bool = new Boolean(1);
document.write(bool.toSource());
-->
</script>
</html>
|
|