イベントを1回だけ実行する

イベントを1回だけ実行する

el.addEventListener('click', function callback(e){
    this.removeEventListener(e.type, callback);
});