Skip to content

Instantly share code, notes, and snippets.

@himalay
Created August 3, 2017 14:54
Show Gist options
  • Save himalay/2013bbcd2ca09985da1f2113db57e098 to your computer and use it in GitHub Desktop.
Save himalay/2013bbcd2ca09985da1f2113db57e098 to your computer and use it in GitHub Desktop.
switch (operation) {
case "fromPercentage": // what is 5% of 20 ? 1
var totalValue = a / 100 * b;
break;
case "toPercenrage": // 25 is what percent of 50 ? 50%
var totalValue = a / b * 100;
break;
case "diffPercentage": // from 20 to 50 ? 150%
var totalValue = (b - a) / a * 100;
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment