Files
freeCodeCamp/tools/challenge-parser/parser/__fixtures__/with-before-hook.md
2025-02-28 14:03:18 +02:00

383 B

--description--

Paragraph 1

code example

--before-all--

// before all code
function foo() {
  return 'bar';
}
foo();

--hints--

First hint

// test code

Second hint with code

// more test code

Third hint with code and inline code

// more test code
if(let x of xs) {
  console.log(x);
}