How to Ask Good Questions

Search or Choose title * Summarize your question into one sentence * Add tag(s) for specific situation Start explaining the problem * What caused the problem? * What have you tried already to fix it? Include Errors * Include error messages * Include tech you're using (unless it's already known by the channel you're asking in) Provide code That way others can run it themselves and get the same problem you got. Don't provide all your code, only enough to cause the problem you have. And do not provide screenshots of your code. Provide the actual code text. Mark as SOLVED When Done When your issue has been solved, please edit the tags to add SOLVED so others know it's not still unanswered! Format all code If your code is really long or has multiple files, use https://pen.new/, https://stackblitz.com/ or https://codesandbox.io/ `Inline code formatting` becomes inline code formatting Code Blocks To use full code blocks, you need three backticks (`) on the line above and below the code. Optionally, add the language to the opening line for syntax highlighting (doesn't display on mobile, and not all languages are supported). ```html <h1>This is my awesome heading!</h1> ``` becomes
<h1>This is my awesome heading!</h1>
<h1>This is my awesome heading!</h1>
```css *, *::before, *::after { box-sizing: border-box; } ``` becomes
*, *::before, *::after {
box-sizing: border-box;
}
*, *::before, *::after {
box-sizing: border-box;
}
```js const double = (num) => num * 2; ``` becomes
const double = (num) => num * 2;
const double = (num) => num * 2;
0 Replies
No replies yetBe the first to reply to this messageJoin

Did you find this page helpful?