Written by Anonymous
<script>
(function() {
const hiduke = new Date(),
month = hiduke.getMonth() + 1,
day = hiduke.getDate(),
today = month + '月' + day + '日';
document.getElementById('hiduke').insertAdjacentHTML('afterbegin', today);
})();
</script>