Skip to content

Instantly share code, notes, and snippets.

@Bijesse
Forked from anonymous/index.html
Created October 20, 2015 22:49
Show Gist options
  • Select an option

  • Save Bijesse/519d889642e31cbd9f5d to your computer and use it in GitHub Desktop.

Select an option

Save Bijesse/519d889642e31cbd9f5d to your computer and use it in GitHub Desktop.
<!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>
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