Last active
November 18, 2017 10:02
-
-
Save cosmos-sajal/37a96cb31c4020e2abf8177cbf427ed0 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
// assume getData to be an API call | |
console.log("Getting Data1"); | |
var data1 = getData('123'); | |
console.log("Data is:", data1); | |
console.log("Getting Data2"); | |
var data2 = getData('456'); | |
console.log("Data is:", data2); | |
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