Skip to content

Instantly share code, notes, and snippets.

@chikoski
Created April 14, 2013 23:43
Show Gist options
  • Save chikoski/5384738 to your computer and use it in GitHub Desktop.
Save chikoski/5384738 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>hello world</title>
</head>
<body>
<p id="output"></p>
</body>
</html>
var date = new Date();
var out = document.getElementById("output");
out.innerHTML = "こんにちは!世界!";
out.innerHTML += date.toLocaleString();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment