Created
August 3, 2017 14:54
-
-
Save himalay/2013bbcd2ca09985da1f2113db57e098 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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