ToInteger
Copied!
ToInteger( value )
Description
The ToInteger
function converts a value to a numeric integer, if
possible.
Attempting to convert a value to a number which has no numeric representation results in an "invalid argument" error.
Parameters
Argument | Type | Definition and Requirements |
---|---|---|
|
Any |
The value to attempt to convert to an integer. |
Examples
The following query uses ToInteger
multiple times to demonstrate how
the function converts various kinds of value
s into integers:
Copied!
client.query([
q.ToInteger(1234.5678),
q.ToInteger(1234),
q.ToInteger('123'),
]).then((ret) => console.log(ret))
[ 1234, 1234, 123 ]
Is this article helpful?
Tell Fauna how the article can be improved:
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!