Mark Wilson I am the creator of TopXML. I am available for international and local (Australia) contracts. I am a Solution Architect/Business Analyst. I have worked in IT in several countries (NZ, Australia, South Africa, UK) building and training teams for government and very large non-governmental organizations. I am ex-Microsoft Consulting Services. I wrote the first book on Microsoft XML published in 2000 called XML Programming with VB and ASP. Most recently I have been building tools for the SEO industry. Ask me for a 37 point SEO health-checkup for your website.
First posted :
03/24/2008
Times viewed :
634
JavaScript String Object
Introduction
The String object can be used to work with strings. A string
is a collection of characters. "Hello World" is a string and
"H" is a character. You can also store an integer or numeric value as
a string. You just have to enclose it with double "" – something like
"99". Remember, that nearly each object is created with the keyword
new exception is the math object. Also remember that we talking here about the
string object not the string literal so don’t confound with it. The String
object contains 28 functions. All of these functions convert the object into a
literal. These functions are covered in a separate page with a simple example.
Here is a short example how it works.