function GetPercentageToIncreaseOrDecrease(num1, num2) {
return (num2 - num1) / num1 * 100;
}
console.log("The percentage to increase from 25 to 100 is: " + GetPercentageToIncreaseOrDecrease(25, 100) + "%");
console.log("The percentage to increase from 22 to 34 is: " + GetPercentageToIncreaseOrDecrease(22, 34) + "%");
console.log("The percentage to increase from 22 to 34 is: " + GetPercentageToIncreaseOrDecrease(22, 34).toFixed(2) + "%");
/*
run:
The percentage to increase from 25 to 100 is: 300%
The percentage to increase from 22 to 34 is: 54.54545454545454%
The percentage to increase from 22 to 34 is: 54.55%
*/