Forum Discussion

SandyDutra-e336's avatar
SandyDutra-e336
Community Member
2 years ago

Javascript to round up percentage

Does anyone have the javascript code to round up the percentage for quiz results?

Thanks

Sandy

  • 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);