Last active
August 29, 2015 14:01
-
-
Save pappu687/7678f30d58d8f6dfc2c6 to your computer and use it in GitHub Desktop.
JavaScript Global
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
<html> | |
<head> | |
<script src="js-1.js"></script> | |
<script src="js-2.js"></script> | |
</head> | |
<body> | |
</body> | |
</html> | |
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
test="Test Me"; | |
var test3="Test3 Called"; |
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
var test2="Test 2 Called"; | |
function testme(){ | |
console.log(test2); | |
console.log(test3); | |
} | |
testme(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment