Sweetpea's Team
Team 7 Q&A 1Q. T he event that is used to detect when an element has been clicked on by the mouse is ______? 1A. On-click Event. Source: W3schools 2Q. Write a regular expression that will match a string which contains the word 'the' (case intensive'). 2A. (/the) this will find all the the's in the string and record then case intensive, meaning its all lowercase. 3Q. Write a regular expression that will match a string which contains two small letter 't' separated by a single character. 3A. (/t.t) t his will find all the t's in the string and record then case intensive, meaning its all lowercase. 4Q. Write a regular expression that will match a string which contains two words { anthrax, bomb} in (case intensive) 4A. Build Answer 5Q. Write a regular expression that will match a string which ends with the same character it starts with. 5A. Build Answer 6Q. Write a regular that will match a string which starts wit...