"Array.filter|param|callbackfn":"A function that accepts up to two arguments. The filter method calls the callbackfn function one time for each element in the array.",
"Array.map|param|callbackfn":"A function that accepts up to two arguments. The map method calls the callbackfn function one time for each element in the array.",
"Array.pop":"Remove the last element from an array and return it.",
"Array.push":"Append a new element to an array.",
"Array.reduce":"Call the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.",
"Array.reduce|param|callbackfn":"A function that accepts up to three arguments. The reduce method calls the callbackfn function one time for each element in the array.",
"Array.reduce|param|initialValue":"Initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.",
"Math.abs":"Returns the absolute value of a number (the value without regard to whether it is positive or negative).\nFor example, the absolute value of -5 is the same as the absolute value of 5.",
"Math.abs|param|x":"A numeric expression for which the absolute value is needed.",
"Math.acos":"Returns the arccosine (in radians) of a number",
"Math.acos|param|x":"A number",
"Math.asin":"Returns the arcsine (in radians) of a number",
"Math.asin|param|x":"A number",
"Math.atan":"Returns the arctangent (in radians) of a number",
"Math.atan2":"Returns the arctangent of the quotient of its arguments.",
"Math.atan2|param|x":"A number",
"Math.atan2|param|y":"A number",
"Math.atan|param|x":"A number",
"Math.ceil":"Returns the smallest number greater than or equal to its numeric argument.",
"Math.ceil|param|x":"A numeric expression.",
"Math.constrain":"Constrains a number to be within a range",
"Math.cos":"Returns the cosine of a number.",
"Math.cos|param|x":"An angle in radians",
"Math.exp":"Returns returns ``e^x``.",
"Math.exp|param|x":"A number",
"Math.floor":"Returns the greatest number less than or equal to its numeric argument.",
"Math.floor|param|x":"A numeric expression.",
"Math.icos":"Returns the cosine of an input angle. This is an 8-bit approximation.",
"Math.icos|param|theta":"input angle from 0-255",
"Math.idiv":"Returns the value of integer signed 32 bit division of two numbers.",
"Math.idiv|param|x":"The first number",
"Math.idiv|param|y":"The second number",
"Math.imul":"Returns the value of integer signed 32 bit multiplication of two numbers.",
"Math.imul|param|x":"The first number",
"Math.imul|param|y":"The second number",
"Math.isin":"Returns the sine of an input angle. This is an 8-bit approximation.",
"Math.isin|param|theta":"input angle from 0-255",
"Math.log":"Returns the natural logarithm (base e) of a number.",
"Math.log|param|x":"A number",
"Math.map":"Re-maps a number from one range to another. That is, a value of ``from low`` would get mapped to ``to low``, a value of ``from high`` to ``to high``, values in-between to values in-between, etc.",
"Math.map|param|fromHigh":"the upper bound of the value's current range, eg: 1023",
"Math.map|param|fromLow":"the lower bound of the value's current range",
"Math.map|param|toHigh":"the upper bound of the value's target range, eg: 4",
"Math.map|param|toLow":"the lower bound of the value's target range",
"Math.map|param|value":"value to map in ranges",
"Math.max":"Returns the larger of two supplied numeric expressions.",
"Math.min":"Returns the smaller of two supplied numeric expressions.",
"Math.pow":"Returns the value of a base expression taken to a specified power.",
"Math.pow|param|x":"The base value of the expression.",
"Math.pow|param|y":"The exponent value of the expression.",
"Math.random":"Returns a pseudorandom number between 0 and 1.",
"Math.randomRange":"Returns a pseudorandom number between min and max included. \nIf both numbers are integral, the result is integral.",