toFixed: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Created page with "{{Command|= Comments ____________________________________________________________________________________________ | arma3dev |= Game name |1.65|= Game version ______________...")
 
mNo edit summary
Line 14: Line 14:


|p1= number: [[Number]] - number to convert |= Parameter 1
|p1= number: [[Number]] - number to convert |= Parameter 1
|p2= decimals: [[Number]] - number of decimals to display (range 0-20)) |= Parameter 2
|p2= decimals: [[Number]] - number of decimals to display (range 0-20) |= Parameter 2


| [[String]] |= Return value
| [[String]] |= Return value

Revision as of 22:08, 1 September 2016

-wrong parameter ("arma3dev") defined!-[[:Category:Introduced with arma3dev version 1.65|1.65]]
Hover & click on the images for description

Description

Description:
Converts a number into a string, keeping a specified number of decimals. If the desired number of decimals are higher than the actual number, nulls are added to create the desired decimal length. This command is almost identical in behaviour to JavaScript toFixed()

NOTE: Converted number is never presented in scientific notation unlike with other number to string commands. Also Arma's default string conversion limits numbers to 6 significant figures, whereas with this command it is possible to preserve some extra precision. (ToDo: example)
Groups:
Uncategorised

Syntax

Syntax:
number toFixed decimals
Parameters:
number: Number - number to convert
decimals: Number - number of decimals to display (range 0-20)
Return Value:
String

Examples

Example 1:
123 toFixed 2; //"123.00"
Example 2:
2.34 toFixed 1; //"2.3" 2.35 toFixed 1; //"2.4"

Additional Information

See also:
toStringtoArraytoLowertoUpper

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

[[Category:Introduced with arma3dev version 1.65]][[ Category: arma3dev: New Scripting Commands | TOFIXED]][[ Category: arma3dev: Scripting Commands | TOFIXED]]

Notes

Bottom Section