index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF8">
<title>JavaScriptの勉強</title>
</head>
<body>
<h1>JavaScriptの勉強</h1>
<script>
// javaScriptオブジェクト(Date)
// vat d = new Date(2012, 4, 22, 7, 5); //月 0~11
var d = new Date();
console.log(d.getMonth());
console.log(d.getTime());
</script>
</body>
</html>