IncrementValue
Increment the integer part of a number
Method Signature
IncrementValue(number=[numeric])Arguments
Argument
Type
Required
Description
Default
number
numeric
true
The number to increment the integer part of.
Examples
Increment 7
incrementValue( 7 );
Result: 8
Increment 7.5
There is a difference between BL engines. ACF will return the integer incremented removing the decimal part. Boxlang will increment the integer part but return both.
Result: 8.5
Additional Examples
Related
Last updated
Was this helpful?
