Deque.prototype.extendleft = function (iterable) {
    for (const x of iterable) {
        this.appendleft(x);
    }