Just starting to learn javascript - I am working on creating random user IDs for my selenium test scenarios. The line of code I am using for the value is as follows:
javascript{Math.floor(Math.random()*11111)}
However, there is a specific field that needs a value with exactly 8 digits - Is there a method to modify this to generate an exact number of digits?
Thank you!!