UNPKG

586 BMarkdownView Raw
1<!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. -->
2
3# Function hex
4
5Format a number as hexadecimal.
6
7
8## Syntax
9
10```js
11math.hex(value)
12```
13
14### Parameters
15
16Parameter | Type | Description
17--------- | ---- | -----------
18`value` | number | Value to be stringified
19`wordSize` | number | Optional word size (see `format`)
20
21### Returns
22
23Type | Description
24---- | -----------
25string | The formatted value
26
27
28## Examples
29
30```js
31//the following outputs "0xF0"
32math.hex(240)
33```
34
35
36## See also
37
38[oct](oct.md),
39[bin](bin.md)