JavaScript toSource() Method
❮ JavaScript Date ObjectDefinition and Usage
The toSource() method represents the source code of an object.
Syntax
object.toSource()
Tips and Notes
Note: This method does not work in Internet Explorer!
Example
Example
How you can use the toSource() method:
<script>
function employee(name, jobtitle, born)
{
this.name = name;
this.jobtitle = jobtitle;
this.born = born;
}
var fred = new employee("Fred Flintstone", "Caveman", 1970);
document.write(fred.toSource());
</script>
Try it Yourself »
❮ JavaScript Date Object