Created
October 16, 2013 18:26
-
-
Save efleming969/7012460 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <!doctype html> | |
| <h1 id="foo">Hello, Workd</h1> | |
| <script> | |
| //http://rate-exchange.appspot.com/currency?from=EURO&to=USD&q=1 | |
| console.log(myFun1(myFun2)); | |
| function myFun1 (fn) { | |
| fn() | |
| return "hello string"; | |
| } | |
| function myFun2 () { | |
| console.log("inside fun 2"); | |
| } | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment