Created
October 20, 2015 22:49
-
-
Save anonymous/f26cd2d64df76479ba9c to your computer and use it in GitHub Desktop.
// source http://jsbin.com/qahocaparu
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> | |
| <html> | |
| <head> | |
| </head> | |
| <body> | |
| sdbgvfjhsdgsdfsdf | |
| <script id="jsbin-javascript"> | |
| var first = prompt("What is your First Name?"); | |
| var last = prompt("What is your Last Name?"); | |
| var fullName = first + last; | |
| console.log("Hello " + fullName); | |
| </script> | |
| <script id="jsbin-source-html" type="text/html"> | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| </head> | |
| <body> | |
| sdbgvfjhsdgsdfsdf | |
| </body> | |
| </html> | |
| </script> | |
| <script id="jsbin-source-javascript" type="text/javascript">var first = prompt("What is your First Name?"); | |
| var last = prompt("What is your Last Name?"); | |
| var fullName = first + last; | |
| console.log("Hello " + fullName);</script></body> | |
| </html> |
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
| var first = prompt("What is your First Name?"); | |
| var last = prompt("What is your Last Name?"); | |
| var fullName = first + last; | |
| console.log("Hello " + fullName); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment