Classifieds Scripts, Web Scripts,  Ajax Scripts, PHP Scripts, ASP Scripts

Archive

Posts Tagged ‘JavaScript’

JavaScript RegExp Object

January 28th, 2012

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 >>

JavaScript Math Object

January 28th, 2012

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 >>

Author: Categories: JavaScript Tags: , ,

JavaScript Boolean Object

January 28th, 2012

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 >>

Author: Categories: JavaScript Tags: , ,

JavaScript Array Object

January 28th, 2012

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 >>

Author: Categories: JavaScript Tags: ,

JavaScript Date Object

January 28th, 2012

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 >>

Author: Categories: JavaScript Tags: ,

JavaScript String Object

January 28th, 2012

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 >>

Author: Categories: JavaScript Tags: , ,

JavaScript Objects Introduction

January 28th, 2012

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 >>

Author: Categories: JavaScript Tags: ,

JavaScript Create Your Own Objects

January 28th, 2012

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 >>

Author: Categories: JavaScript Tags: ,

JavaScript Create Your Own Objects

November 26th, 2011

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 >>

Author: Categories: JavaScript Tags:

JavaScript Variables

April 8th, 2011

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 >>

Author: Categories: JavaScript Tags: ,