Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 468 Bytes

File metadata and controls

13 lines (9 loc) · 468 Bytes

এইচটিএমএল কমেন্ট অনুসন্ধান

নিচের টেক্সট হতে সকল এইচটিএমএল কমেন্ট খুঁজার একটি প্যাটার্ন লিখুন:

let regexp = / /g;

let str = `... <!-- My -- comment
 test --> ..  <!----> ..
`;

alert( str.match(regexp) ); // '<!-- My -- comment \n test -->', '<!---->'