Don't Post Text as an Image!

Why?

Taking a screenshot of your code, terminal, errors or anything fundamentally text-based is counter-productive for everyone involved. The reasons for this are listed below:

How do I post code properly?

Most platforms have settled on Markdown as the preferred formatting language:

```js
(async function(){
  let books = await getAllBooks();
  console.log(books);
})();
```

And Stackoverflow uses 4-spaces of indentation:

    (async function(){
      let books = await getAllBooks();
      console.log(books);
    })();

Hopefully this has been informative. Now whenever you're helping someone and they share an image of their code or error messages, help them anyway but direct them here so they don't make the same mistake next time!


Other similar problems: Don't Ask to Ask, Just Ask, The XY Problem, No Hello.

Further reading: How do I ask a good question?, How To Ask Questions The Smart Way.