**Tell us what’s happening: i dont see the difference using * or + at the end of solution
if any one can explain
thanks **
Describe your issue in detail here.
let username = “JackOfAllTrades”;
let userCheck = /[1][a-z]+\d$|[2]\d\d+$/i; // Change this line
let result = userCheck.test(username);
console.log(result);*
let username = "JackOfAllTrades";
let userCheck = /^[a-z][a-z]+\d*$|^[a-z]\d\d+$/i; // Change this line
let result = userCheck.test(username);
console.log(result);
*/
let username = "JackOfAllTrades";
let userCheck = /^[a-z][a-z]+\d*$|^[a-z]\d\d+$/i;
let result = userCheck.test(username);
console.log(result)
*/
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.52
Challenge: Regular Expressions - Restrict Possible Usernames
Link to the challenge: