Skip to content

Instantly share code, notes, and snippets.

@bluepnume
Created January 27, 2017 01:38
Show Gist options
  • Select an option

  • Save bluepnume/4d2dda0014cdf3da3f6f22af11db1ae3 to your computer and use it in GitHub Desktop.

Select an option

Save bluepnume/4d2dda0014cdf3da3f6f22af11db1ae3 to your computer and use it in GitHub Desktop.
var DEFAULT_TOTAL = 10;
var total = 5;
function getTotal() {
"use strict";
if (!total) {
var total = DEFAULT_TOTAL;
}
return total;
}
console.log('Total:', getTotal());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment