Last active
June 3, 2018 08:35
-
-
Save brauliodiez/61bff97f198311a7b72433bb78aac61a to your computer and use it in GitHub Desktop.
Closure sample
This file contains 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
const calculateFinalPrice = function () { | |
const discount = 0.90; | |
// simulate ajax call | |
setTimeout(function() { | |
const total = 200; | |
const final = total * discount; | |
console.log(final) | |
}, 500); | |
} | |
calculateFinalPrice(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment