js-mentorship-razvan / javascript

Javascript study notes
GNU General Public License v3.0
22 stars 2 forks source link

Calculate Price Excluding VAT #392

Closed RazvanBugoi closed 4 years ago

RazvanBugoi commented 4 years ago

https://www.codewars.com/kata/5890d8bc9f0f422cf200006b/train/javascript

RazvanBugoi commented 4 years ago
//return price without vat
function excludingVatPrice(price){
  if ( price == null ) {
    return -1;
    } else {
    return +(price - (price / 115) * 15).toFixed(2);
    }
}
AlaAliceShaw commented 3 years ago

super solution