Global function

eval(string)

Evaluates a string of JavaScript code.

parseInt(string, radix)

Parses a string argument and returns an integer of the specified radix or base. Default is decimal number.

parseFloat(string)

Parses a string and returns its value as a number.

isNaN(number)

Evaluates whether an argument is NaN.

isFinite(number)

Evaluates whether an argument is a finite number

encodeURI(uri)

Encodes a Uniform Resource Identifier (URI).

encodeURIComponent(uri)

Encodes a Uniform Resource Identifier (URI) with all charactors.

decodeURI(uri)

Decodes a string previously encoded using encodeURI.

decodeURIComponent(uri)

Decodes a string previously encoded using encodeURIComponent.

isCardForm()

Verifies whether the script has been called from edit form. If it is the call from edit form, true will return.