What would be the most efficient way of calcutating (as in removing ex. 25% off a number)?
You can decrease by 25% via:
number *= 0.75
Or add 25% via:
number *= 1.25
2 Likes
What would be the most efficient way of calcutating (as in removing ex. 25% off a number)?
You can decrease by 25% via:
number *= 0.75
Or add 25% via:
number *= 1.25