2022-03-01 13:04:09 +01:00

1.1 KiB

layout
default

Function help #

Retrieve help on a function or data type. Help files are retrieved from the embedded documentation in math.docs.

Syntax #

math.help(search)

Parameters #

Parameter Type Description
search Function | string | Object A function or function name for which to get help

Returns #

Type Description
Help A help object

Throws #

Type Description

Examples #

console.log(math.help('sin').toString())
console.log(math.help(math.add).toString())
console.log(math.help(math.add).toJSON())