From c21ea1327225dc659ac74bee3787fcb50853d341 Mon Sep 17 00:00:00 2001 From: Mayank Raj <123984701+mayank-devtron@users.noreply.github.com> Date: Tue, 13 Feb 2024 20:56:28 +0530 Subject: [PATCH] Update app.js --- app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app.js b/app.js index 7cf6bb44..8fb1992a 100644 --- a/app.js +++ b/app.js @@ -39,6 +39,7 @@ setInterval(function(str1, str2) { function makeid(length) { var text = ""; var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; + var pos = "abcd" for (var i = 0; i < length; i++) text += possible.charAt(Math.floor(Math.random() * possible.length));