Skip to content

Instantly share code, notes, and snippets.

@jamc92
Created February 22, 2015 16:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamc92/700fc156b607313d766f to your computer and use it in GitHub Desktop.
Save jamc92/700fc156b607313d766f to your computer and use it in GitHub Desktop.
JS - Hello World
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hola mundo de Javascript</title>
</head>
<body>
<script>
//Alerta en una ventana emergente
alert(document.title);
//Escribir directamente en el documento principal
document.write("Jaja");
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment