# Find HTML comments Find all HTML comments in the text: ```js let regexp = /your regexp/g; let str = `... .. .. `; alert( str.match(regexp) ); // '', '' ```