Last active
July 28, 2020 15:40
-
-
Save dastagirkhan/55747173c5400d506e5f926b3d4b1c07 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
| var $vat = 20; | |
| var $vat_divisor = 1 + ($vat/100); | |
| var $price_gross = 5; | |
| var $price_net = ($price_gross/$vat_divisor).toFixed(2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment