Number
Last updated
Last updated
This placeholder contains number value
This placeholder have some properties that might be useful for you
<number plus A>
add to the number, number A
<number mins A>
substract from the number, number A
<number abs>
absolute number, If number is -5
, you will get 5
<number negate>
negate the number, If number is 3
, you will get -3
<number multiply A>
multiply the number with number A
<number divide A>
divide the number with number A
<number floor>
floor the number, if it's 3.6
, it will be 3
<number ceil>
ceil the number, if it's 3.3
, it will be 4
<number round>
round the number, if it's 3.5
, it will be 4
<number beforedot>
get the digits before the dot (.), if it's 410.513
, it will be 410
<number afterdot>
get the digits after the dot (.), if it's 410.513
, it will be 513
Click here to know more about using placeholders