JS.2 String Object Functions

String is a built-in type in JavaScript. It holds a sequence of characters in the Unicode character set. A string literal is created using a double quote or a single quote strings.

var txt = 'Hello world'; // or "Hello world"

Two strings can be concatenated by using the '+' operator, as well as by using the concat function. For example:

var txt = "Hello " + 'world';

field['Salesperson.First Name'].concat(" ",field['Salesperson.Last Name'])

<< importPackage(package) © 1996-2013 InetSoft Technology Corporation (v11.5) length >>