HTMLを書き換える

取得した要素のコンテンツを書き換える

ここに日時を表示します

<script>
'use strict';
document.getElementById('choice').textContent = new Date();
</script>