Skip to content

Instantly share code, notes, and snippets.

@aliostad
Last active December 16, 2015 03:38
Show Gist options
  • Save aliostad/5370956 to your computer and use it in GitHub Desktop.
Save aliostad/5370956 to your computer and use it in GitHub Desktop.
A simple js view model
function ViewModel(price, discountPercentage){
this.price = price;
this.discountPercentage = discountPercentage;
}
ViewModel.prototype.getRealPrice = function(){
return this.price * this.discountPercentage;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment