; ; ; Each Intrinsic Listed is formed by Three consecutive Lines ; ; Line 1: name of function ; Line 2 parameters ; Line 3 Help Text ; abs number Absolute value of a number acos number Returns the arccosine of a number asin number Returns the arcsine of a number atan number Returns the arctangent of a number atan2 number,number Returns the angle (in radians) from the X axis to a point (y,x) ceil number Returns the smallest integer greater than or equal to its numeric argument cos number Returns the cosine of a number exp number Returns e (the base of natural logarithms) raised to a power floor number Returns the greatest integer less than or equal to its numeric argument log number Returns the natural logarithm of a number max number, number,... Returns the greater of zero or more supplied numeric expressions min number,number,... Returns the lesser of zero or more supplied numeric expressions pow base,exponent Returns the value of a base expression taken to a specified power random Returns a pseudorandom number between 0 and 1 round Returns a supplied numeric expression rounded to the nearest integer sin number Returns the sine of a number sqrt number Returns the square root of a number tan number Returns the tangent of a number E ^property Euler's constant and the base of natural logarithms, approximately 2.718. LN2 ^property Natural logarithm of 2, approximately 0.693. LN10 ^property Natural logarithm of 10, approximately 2.302. LOG2E ^property Base 2 logarithm of E, approximately 1.442. LOG10E ^property Base 10 logarithm of E, approximately 0.434. PI ^property Returns the ratio of the circumference of a circle to its diameter, approximately 3.141592653589793 SQRT1_2 ^property Returns the square root of 0.5, or one divided by the square root of 2 SQRT2 ^property Square root of 2, approximately 1.414 ; ; constructor ^property Specifies the function that creates an object prototype ^property Returns a reference to the prototype for a class of objects MAX_VALUE ^property Returns the largest number representable in JScript. Equal to approximately 1.79E+308 MIN_VALUE ^property Returns the number closest to zero representable in JScript. Equal to approximately 5.00E-324 Nan ^property A special value that indicates an arithmetic expression returned a value that was not a number NEGATIVE_INFINITY ^property Returns a value more negative than the largest negative number (-Number.MAX_VALUE) representable in JScript POSITIVE_INFINITY ^property Returns a value larger than the largest number (Number.MAX_VALUE) that can be represented in JScript toExponential [fractionDigits] Returns a string containing a number represented in exponential notation toFixed [fraction] Returns a string representing a number in fixed-point notation toPrecision [precision] Returns a string containing a number represented either in exponential or fixed-point notation with a specified number of digits ; IsNaN Returns a Boolean value that indicates whether a value is the reserved value NaN (not a number) IsFinite Returns a Boolean value that indicates if a supplied number is finite toString returns string representation of an object valueOf Returns the primitive value of the specified object ; ; ; getDate Returns the day of the month value in a Date object using local time getDay Returns the day of the week value in a Date object using local time getFullYear Returns the year value in the Date object using local time getHours Returns the hours value in a Date object using local time getMilliseconds Returns the milliseconds value in a Date object using local time getMinutes Returns the minutes value in a Date object using local time getMonth Returns the month value in the Date object using local time getSeconds Returns the seconds value in a Date object using local time getTime Returns the time value in a Date object. toDateString Returns a date as a string value toString returns string representation of an object valueOf Returns the primitive value of the specified object ; ; toString returns string representation of an object valueOf Returns the primitive value of the specified object ; ; description ^property Returns or sets the descriptive string associated with a specific error message ^property Returns an error message string name ^property Returns the name of an error number ^property Returns or sets the numeric value associated with a specific error. The Error object's default property is number ; ; write str1 [, str2 [, ... [, strN]]] Sends strings to the script debugger writeln str1 [, str2 [, ... [, strN]]] Sends strings to the script debugger, followed by a newline character ; ; concat item1[,item2 [,...[,itemN ]]] Returns a new array consisting of a combination of two or more arrays join separator Returns a string value consisting of all the elements of an array concatenated together and separated by the specified separator character pop Removes the last element from an array and returns it push item1[,item2 [,...[,itemN ]]] Appends new elements to an array, and returns the new length of the array reverse Returns an Array object with the elements reversed shift Removes the first element from an array and returns it slice start[, end] Returns a section of an array sort Returns an Array object with the elements sorted splice start, deleteCount, [item1 [,item2 [,...[,itemN ]]]] Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements unshift item1[,item2 [,...[,itemN ]]] Returns an array with specified elements inserted at the beginning valueOf toString returns string representation of an object valueOf Returns the primitive value of the specified object ; ; dimensions Returns the number of dimensions in a VBArray lbound dimension Returns the lowest index value used in the specified dimension of a VBArray ubound dimension Returns the highest index value used in the specified dimension of the VBArray getItem dimension1[,dimesion2[,...dimensionN]] Returns the item at the specified location toArray Returns a standard JScript array converted from a VBArray ; ; ScriptEngine Returns a string representing the scripting language in use ScriptEngineBuildVersion Returns the build version number of the scripting engine in use ScriptEngineMajorVersion Returns the major version number of the scripting engine in use ScriptEngineMinorVersion Returns the minor version number of the scripting engine in use GetObject pathname[,class] Returns a reference to an Automation object from a file eval expression Evaluates JScript code and executes it parseFloat numString Returns a floating-point number converted from a string parseInt numString,radix Returns an integer converted from a string ; ; concat [string2[, string3[, . . . [, stringN]]]] Returns a string value containing the concatenation of two or more supplied strings indexOf subString[, startIndex] Returns the character position where the first occurrence of a substring occurs within a String object substr start [, length ] Returns a substring beginning at a specified location and having a specified length lastIndexOf substring[,startindex] Returns the last occurrence of a substring within a String object match RegExp Executes a search on a string using a regular expression pattern, and returns an array containing the results of that search replace RegExp, replaceText Returns a copy of a string with text replaced using a regular expression or search string search RegExp Returns the position of the first substring match in a regular expression search slice start[, end] Returns a section of a string split [separator[, limit]] Returns the array of strings that results when a string is separated into substrings toLowerCase Returns a string where all alphabetic characters have been converted to lowercase toUpperCase Returns a string where all alphabetic characters have been converted to uppercase subString start,end The substring method returns a string containing the substring from start up to, but not including, end toString returns string representation of an object valueOf Returns the primitive value of the specified object ; ; callee ^property Returns the Function object being executed, that is, the body text of the specified Function object caller ^property Returns a reference to the function that invoked the current function length ^property Returns the actual number of arguments passed to a function by the caller ; caller ^property Returns a reference to the function that invoked the current function callee ^property Returns the Function object being executed, that is, the body text of the specified Function object. constructor ^property Specifies the function that creates an object prototype ^property Returns a reference to the prototype for a class of objects length ^property Returns the number of arguments defined for a function toString Returns a string representation of an object valueOf Returns the primitive value of the specified object ;