15장
셀프체크
배열 하나를 선언해 이동하기 전 점수와 표 데이터를 저장합니다(push). 화면에는 되돌리기 버튼을 생성해 되돌리기 버튼을 누르면 점수와 표 데이터를 저장된 데이터로 바꾸고 화면을 다시 그립니다. 배열에서 pop 메서드로 과거 내역을 꺼내면 되므로 몇 번이고 뒤로 되돌릴 수 있습니다.
<table id="table"></table>
<div>
<span id="score">0</span>
<button id="back">되돌리기</button>
</div>
<script>
const $table = document.getElementById('table');
const $score = document.getElementById('score');
const $back = document.getElementById('back');
let data = [];
const history = [];