get help in general - we have more specialized help rooms here: https://gitter.im/FreeCodeCamp/home
thecodingaviator on master
remove A (#31157) (compare)
this might be nit picky but does this sentence sound a little weird to anyone?In the APIs and Microservices Certification, you'll learn how to write back end-ready with Node.js and npm (Node Package Manager).
from here https://www.freecodecamp.org/learn/apis-and-microservices/
does it mean ...back end-ready apps...

<h2>CatPhotoApp</h2>
<main>
<img src="https://www.freecatphotoapp.com/your-image.jpg" alt="A business cat wearing a necktie."src=https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg>
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
<p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>
Would anyone here happen to know why the first lesson for JavaScript is bugging out? It is the lesson on commenting code. I know how to comment, but it won't let me do an inline comment //, only multi-line comments.
I get the following readout
1
/
SyntaxError: unknown: Unterminated regular expression. (1:1)
1 | /
| ^
You should have an ordered list for Top 3 things cats hate:
You should have an unordered list for Things cats love:
You should have only one ul element.
You should have only one ol element.
You should have three li elements within your ul element.
You should have three li elements within your ol element.
Your ul element should have a closing tag.
Your ol element should have a closing tag.
Your li element should have a closing tag.
The li elements in your unordered list should not be empty.
The li elements in your ordered list should not be empty.myanswer
<p>Things cats love:</p>
<ul>
<li>milk</li>
<li>cheese</li>
<li>butter</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
<li>bears</li>
<li>cat</li>
<li>dog</li>
</ol> but qustion <one ul element and 3lielements in ul still error and stuck here whats wrong please?