Created
April 14, 2013 23:43
-
-
Save chikoski/5384738 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> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title>hello world</title> | |
</head> | |
<body> | |
<p id="output"></p> | |
</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 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