how to add alphabets in string javascript code example
Example 1: javascript increment alphabet
class StringIdGenerator {
constructor(chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ') {
this._chars = chars;
this._nextId = [0];
}
next() {
const r = [];
for (const char of this._nextId) {
r.unshift(this._chars[char]);
}
this._increment();
return r.join('');
}
_increment() {
for (let i = 0; i < this._nextId.length; i++) {
const val = ++this._nextId[i];
if (val >= this._chars.length) {
this._nextId[i] = 0;
} else {
return;
}
}
this._nextId.push(0);
}
*[Symbol.iterator]() {
while (true) {
yield this.next();
}
}
}
Example 2: javascript increment alphabet
const ids = new StringIdGenerator();
ids.next();
ids.next();
ids.next();
ids.next();
ids.next();
ids.next();
ids.next();
ids.next();
ids.next();
ids.next();