function GetPercentageToIncreaseOrDecrease(num1, num2) {
return (num2 - num1) / num1 * 100;
}
console.log("The percentage to increase from 30 to 40 is: " + GetPercentageToIncreaseOrDecrease(30, 40) + "%");
console.log("The percentage to increase from 30 to 40 is: " + GetPercentageToIncreaseOrDecrease(30, 40).toFixed(2) + "%");
console.log("The percentage to increase from 20 to 35 is: " + GetPercentageToIncreaseOrDecrease(20, 35) + "%");
/*
run:
"The percentage to increase from 30 to 40 is: 33.33333333333333%"
"The percentage to increase from 30 to 40 is: 33.33%"
"The percentage to increase from 20 to 35 is: 75%"
*/