/*
Regular Expression
Quantifiers
$ => End With Something
^ => Start With Something
?= => Followed By Something
?! => Not Followed By Something
*/
let myString = "We Love Programming";
let names = "1OsamaZ 2AhmedZ 3Mohammed 4MoustafaZ 5GamalZ";
console.log(/ing$/ig.test(myString));
console.log(/^we/ig.test(myString));
console.log(/lz$/ig.test(names));
console.log(/^d/ig.test(names));
console.log(names.match(/dw{5}(?=Z)/ig));
console.log(names.match(/dw{8}(?!Z)/ig));
You have not completed all required lessons and assessments.