String.Anchor Example – JavaScript Syntax – JS String.Anchor Example
String.Anchor Example – JavaScript Syntax – JS String.Anchor Example Purpose: – Illustrates the JavaScript syntax for the String Anchor . View Other String Properties and Methods Prerequistes: Install Visual Web Developer 2008 Syntax: string.anchor(name) – name is required – it is the name of the anchor. Restrictions: None Notes: You can build your own library of syntax examples by using same web site over and... [Read More...]
String.Prototype Example – JavaScript Syntax – JS String.Prototype Example
String.Prototype Example – JavaScript Syntax – JS String.Prototype Example Purpose: – Illustrates the JavaScript syntax for the String Prototype . View Other String Properties and Methods Prerequistes: Install Visual Web Developer 2008 Syntax: object.prototype.name=value – Prototype allows you to add properties and methods to an object Restrictions: None Notes: You can build your own library of syntax examples by using... [Read More...]
String.Length Example – JavaScript Syntax – JS String.Length Example
String.Length Example – JavaScript Syntax – JS String.Length Example Purpose: – Illustrates the JavaScript syntax for the String Length . View Other String Properties and Methods Prerequistes: Install Visual Web Developer 2008 Syntax: string.length; – Returns the length of the string. Restrictions: None Notes: You can build your own library of syntax examples by using same web site over and over and just add new files... [Read More...]
String.Constructor Example – JavaScript Syntax – JS String.Constructor Example
String.Constructor Example – JavaScript Syntax – JS String.Constructor Example Purpose: – Illustrates the JavaScript syntax for the String Constructor . View Other String Properties and Methods Prerequistes: Install Visual Web Developer 2008 Syntax: string.constructor; – Returns the function that created the String object’s prototype Restrictions: None Notes: You can build your own library of syntax examples... [Read More...]
String Example – Data Type – JavaScript Syntax – JS String Example
String Example – Data Type – JavaScript Syntax – JS String Example Purpose: – Illustrates the JavaScript syntax for the String Object . JavaScript String Examples String Object Properties constructor Returns the function that created the String object’s prototype length Returns the length of a string prototype Allows you to add properties and methods to an object String HTML Wrapper Methods anchor() Creates... [Read More...]
Number Example – Data Type – JavaScript Syntax – JS Number Example
String Example – Data Type – JavaScript Syntax – JS String Example Purpose: – Illustrates the JavaScript syntax for the Number Object . Prerequistes: Install Visual Web Developer 2008 Syntax: var num=new Number(123.5); num.property or num.method(); – Demonstrates how to use properties and methods of Number object. Restrictions: None Notes: You can build your own library of syntax examples by using same web site... [Read More...]
Math Example – Data Type – JavaScript Syntax – JS Math Example
Math Example – Data Type – JavaScript Syntax – JS Math Example Purpose: – Illustrates the JavaScript syntax for the Math Object . Prerequistes: Install Visual Web Developer 2008 Syntax: var y = Math.sqrt(25); – Demonstrates how to use properties and methods of Math object. Restrictions: None Notes: You can build your own library of syntax examples by using same web site over and over and just add new files to... [Read More...]
Abbr Tag Example – HTML Syntax – Abbr Examples
Abbr Tag Example – HTML Syntax – Abbr Examples Summary: – Illustrates the HTML syntax for the abbr tag. Prerequistes: Install Visual Web Developer 2008 Syntax: abbr – Abbr indicates that the enclosed text is an abbreviation. This has no effect on how the text is displayed, but you can use the tag as an element selector in a style sheet to make abbreviations have a certain style. Restrictions: None Notes: You can build... [Read More...]
Date Example – Data Type – JavaScript Syntax – JS Date Example
Date Example – Data Type – JavaScript Syntax – JS Date Example Purpose: – Illustrates the JavaScript syntax for the Date example. Prerequistes: Install Visual Web Developer 2008 Syntax: var myCurrentDate = new Date(); – Demonstrates creating a Date object and various ways to instantiate, manipulate, and retrieve. Restrictions: None Notes: You can build your own library of syntax examples by using same web site... [Read More...]
Boolean Example – Data Type – JavaScript Syntax – JS Boolean Example
Boolean Example – Data Type – JavaScript Syntax – JS Boolean Example Purpose: – Illustrates the JavaScript syntax for the Boolean example. Prerequistes: Install Visual Web Developer 2008 Syntax: var myBool = new Boolean(); – Demonstrates creating a Boolean object and various ways to make it true or false Restrictions: None Notes: You can build your own library of syntax examples by using same web site over... [Read More...]
Array Example – Data Type – JavaScript Syntax – JS Array Example
Array Example – Data Type – JavaScript Syntax – JS Array Example Purpose: – Illustrates the JavaScript syntax for the Array example. Prerequistes: Install Visual Web Developer 2008 Syntax: var arrayname[“item1″,”item2”,…] – Demonstrates creating various types of arrays. Restrictions: None Notes: You can build your own library of syntax examples by using same web site over and over... [Read More...]