Regular Expressions - Specify Exact Number of Matches - Free Code Camp

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

even though it might seem silly making a video like that... for someone like me its SUPER helpful. sometimes someone such as myself has a major brainfart and watching your means someone else is reading the question out and working though everything... makes all the difference in my closing the latop or continuing on with the learning. I have dyslexia and ADHD so yeah .. again MASIVE THANK YOU

crash
Автор

Thank you very much Mr. Ian
let timStr = "Timmmmber";
let timRegex = /Tim{4}ber/;
let result = timRegex.test(timStr);
console.log(result);

zken