joon hee - StandardLibrary-1.81
NAME
Object - the core of all JavaScript classes.
SYNOPSIS
var x = new Object(); // constructed
var y = {}; // literal
DESCRIPTION
In JavaScript, every single value is inherited from the Object class. It is the last thing in the __proto__ chain.
METHODS
hasOwnProperty(String prop) Returns Boolean
isPrototypeOf(Object object) Returns Boolean
propertyIsEnumerable(String prop) Returns Boolean
toSource() Returns String
toLocaleString() Returns String
toString() Returns String
valueOf() Returns Object
AUTHOR
Jhuni, <jhuni_x@yahoo.com>
COPYRIGHT
Public Domain
/*=pod
=head1 NAME
Object - the core of all JavaScript classes.
=head1 SYNOPSIS
var x = new Object(); // constructed
var y = {}; // literal
=head1 DESCRIPTION
In JavaScript, every single value is inherited from the Object class. It is the last thing in the __proto__ chain.
=head1 METHODS
=cut*/
/*=pod
=head2 hasOwnProperty(String prop) Returns Boolean
=cut*/
/*=pod
=head2 isPrototypeOf(Object object) Returns Boolean
=cut*/
/*=pod
=head2 propertyIsEnumerable(String prop) Returns Boolean
=cut*/
/*=pod
=head2 toSource() Returns String
=cut*/
/*=pod
=head2 toLocaleString() Returns String
=cut*/
/*=pod
=head2 toString() Returns String
=cut*/
/*=pod
=head2 valueOf() Returns Object
=cut*/
/*=pod
=head1 AUTHOR
Jhuni, <jhuni_x@yahoo.com>
=head1 COPYRIGHT
Public Domain
=cut*/