UNPKG

mathjs

Version:

Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser and offers an integrated solution to work with numbers, big numbers, complex numbers, units, and matrices.

51 lines (32 loc) 1.03 kB
# Function string Create a string or convert any object into a string. Elements of Arrays and Matrices are processed element wise. ## Syntax ```js math.string(value) ``` ### Parameters Parameter | Type | Description --------- | ---- | ----------- `value` | * &#124; Array &#124; Matrix &#124; null | A value to convert to a string ### Returns Type | Description ---- | ----------- String &#124; Array &#124; Matrix | The created string ## Examples ```js math.string(4.2); // returns string '4.2' math.string(math.complex(3, 2); // returns string '3 + 2i' var u = math.unit(5, 'km'); math.string(u.to('m')); // returns string '5000 m' math.string([true, false]); // returns ['true', 'false'] ``` ## See also [bignumber](bignumber.md), [boolean](boolean.md), [complex](complex.md), [index](index.md), [matrix](matrix.md), [number](number.md), [unit](unit.md) <!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. -->