index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF8">
<title>JavaScriptの勉強</title>
</head>
<body>
<h1>JavaScriptの勉強</h1>
<script>
// javaScriptオブジェクト
// 日付、数値、文字列
var s = new String("this is a pen.");
console.log(s.length); //プロパティ(属性)
var d = new Date();
console.log(d.getFullYear()); //メソッド(処理)
</script>
</body>
</html>