mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
991 B
991 B
| layout |
|---|
| default |
§Function help
Retrieve help on a function or data type. Help files are retrieved from the documentation in math.expression.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 |
§Examples
console.log(math.help('sin').toString());
console.log(math.help(math.add).toString());
console.log(math.help(math.add).toJSON());