Last active
August 29, 2015 14:08
-
-
Save CS1000/c8b5718573481e762d27 to your computer and use it in GitHub Desktop.
After fee
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
Number.prototype.fee=function(fee){return /%$/.test(fee)?this-this*parseInt(fee)/100:this-fee} | |
/* | |
// 5 off | |
parseInt('100').fee(5) | |
// 15% off | |
parseInt('100').fee('15%') | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment