if (this._head.data === item) {
                this._head = this._head.next;
                return current.data;
            }