
RegExp, is short for regular expression. Complete RegExp Object Reference For a complete reference of all the properties and methods that can be used with the RegExp object, go to our complete RegExp object reference. The reference contains a brief description and examples of use for each property and method! What is RegExp? A regular expression [...]
Read More >>

Complete Math Object Reference For a complete reference of all the properties and methods that can be used with the Math object, go to our complete Math object reference. The reference contains a brief description and examples of use for each property and method! Math Object The Math object allows you to perform mathematical tasks. The [...]
Read More >>

Complete Boolean Object Reference For a complete reference of all the properties and methods that can be used with the Boolean object, go to our complete Boolean object reference. The reference contains a brief description and examples of use for each property and method! Create a Boolean Object The Boolean object represents two values: “true” or [...]
Read More >>

Complete Array Object Reference For a complete reference of all the properties and methods that can be used with the Array object, go to our complete Array object reference. The reference contains a brief description and examples of use for each property and method! What is an Array? An array is a special variable, which can [...]
Read More >>

Complete Date Object Reference For a complete reference of all the properties and methods that can be used with the Date object, go to our complete Date object reference. The reference contains a brief description and examples of use for each property and method! Create a Date Object The Date object is used to work with [...]
Read More >>

Complete String Object Reference For a complete reference of all the properties and methods that can be used with the String object, go to our complete String object reference. The reference contains a brief description and examples of use for each property and method! String object The String object is used to manipulate a stored piece [...]
Read More >>

JavaScript is an Object Based Programming language. An Object Based Programming language allows you to define your own objects and make your own variable types. Object Based Programming JavaScript is an Object Based Programming language, and allows you to define your own objects and make your own variable types. However, creating your own objects will [...]
Read More >>

JavaScript Objects Earlier in this tutorial we have seen that JavaScript has several built-in objects, like String, Date, Array, and more. In addition to these built-in objects, you can also create your own. An object is just a special kind of data, with a collection of properties and methods. Let’s illustrate with an example: A [...]
Read More >>

JavaScript Objects Earlier in this tutorial we have seen that JavaScript has several built-in objects, like String, Date, Array, and more. In addition to these built-in objects, you can also create your own. An object is just a special kind of data, with a collection of properties and methods. Let’s illustrate with an example: A [...]
Read More >>

Variables are “containers” for storing information. Do You Remember Algebra From School? Do you remember algebra from school? x=5, y=6, z=x+y Do you remember that a letter (like x) could be used to hold a value (like 5), and that you could use the information above to calculate the value of z to be 11? [...]
Read More >>