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