Please run the code below in the console (most of cases F12
) and try to play around with it..:
const describeMe = prompt('How you can describe me?');
const regex = /not|BAD|AS{1,2}|for|a|dev+/igm;
alert('Your description is ' + regex.test(describeMe));