Created
December 10, 2025 18:20
-
-
Save UltiRequiem/15d650798cb35f78371e6ec02e11f0e3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const eventName = "dvlive"; | |
| const email = "dvlive.co"; | |
| const baseId = 2098390; | |
| const quantity = 10; | |
| console.log("PromoterLink,Name,Last name, Email"); | |
| for (let i = 1; i <= quantity; i++) { | |
| const link = `https://www.ticketfairy.com/events/${eventName}?r=${baseId + i}`; | |
| const name = `Promoter ${i}`; | |
| const promoterEmail = `bookings+pr${i}@${email}`; | |
| console.log(`${link},${name},Promoter,${promoterEmail}`); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment