<body>
<h1 id="title">Hello, jQuery!</h1>
<script>
const title = document.getElementById("title");
title.style.color = "red";
</script>
</body>
<body>
<h1 id="title">Hello, jQuery!</h1>
<script>
$("#title").css("color", "red");
</script>
</body>
jQueryはDOM操作を簡単にするライブラリ