--- id: bad87fee1348bd9aedf08802 title: Uncomment HTML challengeType: 0 videoUrl: '' localeTitle: Uncomment HTML --- ## Description undefined ## Instructions
إلغاء h2 عناصر h1 و h2 و p .
## Tests
```yml tests: - text: اجعل عنصر h1 مرئيًا على صفحتك من خلال إلغاء تحميله. testString: 'assert($("h1").length > 0, "Make your h1 element visible on your page by uncommenting it.");' - text: اجعل عنصر h2 مرئيًا على صفحتك من خلال إلغاء تحميله. testString: 'assert($("h2").length > 0, "Make your h2 element visible on your page by uncommenting it.");' - text: اجعل العنصر p مرئيًا على صفحتك من خلال إلغاء تحميله. testString: 'assert($("p").length > 0, "Make your p element visible on your page by uncommenting it.");' - text: تأكد من حذف جميع علامات التعليق الزائدة ، مثل --> . testString: 'assert(!/[^fc]-->/gi.test(code.replace(/ * ```
## Solution
```js // solution required ```