mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-25 23:02:05 -04:00
41 lines
398 B
Markdown
41 lines
398 B
Markdown
# --description--
|
|
|
|
Paragraph 1
|
|
|
|
```html
|
|
code example
|
|
```
|
|
|
|
# --after-each--
|
|
|
|
```js
|
|
// after each code
|
|
function cleanup() {
|
|
return 'cleaned up';
|
|
}
|
|
cleanup();
|
|
```
|
|
|
|
# --hints--
|
|
|
|
First hint
|
|
|
|
```js
|
|
// test code
|
|
```
|
|
|
|
Second hint with <code>code</code>
|
|
|
|
```js
|
|
// more test code
|
|
```
|
|
|
|
Third *hint* with <code>code</code> and `inline code`
|
|
|
|
```js
|
|
// more test code
|
|
if(let x of xs) {
|
|
console.log(x);
|
|
}
|
|
```
|