Forum Discussion
SandyDutra-e336
3 years agoCommunity Member
Javascript to round up percentage
Does anyone have the javascript code to round up the percentage for quiz results?
Thanks
Sandy
RonPrice
3 years agoPartner
Here is a script we have used to round up a variable named "Quantity". We have two variables here - "Quantity" and "RoundedQuantity"
var player=GetPlayer();
var RoundedQuantity = player.GetVar("Quantity");
RoundedQuantity = Math.round(RoundedQuantity);
player.SetVar("Quantity", RoundedQuantity);