Created
November 18, 2017 10:01
-
-
Save cosmos-sajal/e051a724d3fcffed0aa6f77cdbd9f2ea to your computer and use it in GitHub Desktop.
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
console.log("Getting Data1"); | |
getData('123', function(data1) { | |
console.log("Data is:", data1); | |
}); | |
console.log("Getting Data2"); | |
getData('456', function(data1) { | |
console.log("Data is:", data1); | |
}); | |
var sum = 1 + 2; | |
console.log("sum is:", sum); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment