Skip to content

Instantly share code, notes, and snippets.

@dastagirkhan
Last active July 28, 2020 15:40
Show Gist options
  • Select an option

  • Save dastagirkhan/55747173c5400d506e5f926b3d4b1c07 to your computer and use it in GitHub Desktop.

Select an option

Save dastagirkhan/55747173c5400d506e5f926b3d4b1c07 to your computer and use it in GitHub Desktop.
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