This wiki is for the exclusive use of my friends and colleagues. Account creation and anonymous editing have been turned off.

If you are a friend or colleague of mine, and would like to participate in this project, please send me a message.

If you find these pages useful, please donate to help cover server costs. Thanks!

Difference between revisions of "JavaScript Classes"

From OdleWiki
Line 16: Line 16:
 
|-
 
|-
 
| '''Math''' || Contains methods and properties for manipulating numbers.
 
| '''Math''' || Contains methods and properties for manipulating numbers.
 +
|-
 +
| '''Number''' || Contains methods and properties for manipulating numbers.
 
|-
 
|-
 
| '''Object''' || Represents the base class for all built-in JavaScript classes; contains several of the built-in JavaScript functions.
 
| '''Object''' || Represents the base class for all built-in JavaScript classes; contains several of the built-in JavaScript functions.

Revision as of 19:02, 4 February 2013


Array Creates new array objects.
Boolean Creates new Boolean objects.
Date Retrieves and manipulates dates and times.
Error Returns runtime error information.
Function Creates new function objects.
Global Stores global variables and contains various built-in JavaScript functions.
Math Contains methods and properties for manipulating numbers.
Number Contains methods and properties for manipulating numbers.
Object Represents the base class for all built-in JavaScript classes; contains several of the built-in JavaScript functions.
RegExp Contains methods and properties for finding and replacing characters in text strings.
String Contains methods and properties for manipulating text strings.