Rashedul Islamdev-rashedul.hashnode.devยทMar 27, 2023generate id with a generator functionfunction* generateId() { let index = 1; while (true) { yield index++; } } const generateUserId = generateId(); const generateProdId = generateId(); // user id console.log("user", generateUserId.next()); console.log("user", generateUserId.next()...80 readsidAdd a thoughtful commentNo comments yetBe the first to start the conversation.