Skip to content

Instantly share code, notes, and snippets.

@himeshvats19
Created June 26, 2019 07:08
Show Gist options
  • Save himeshvats19/3ef51b3f15e118ed76bf9b3b7416f0d4 to your computer and use it in GitHub Desktop.
Save himeshvats19/3ef51b3f15e118ed76bf9b3b7416f0d4 to your computer and use it in GitHub Desktop.
function calculateTotalAmount (vip) {
var amount = 0
if (vip) {
var amount = 1
}
{ // more crazy blocks!
var amount = 100
{
var amount = 1000
}
}
return amount
}
console.log(calculateTotalAmount(true))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment