how to learn coding

1. debugging

Debugging error messages is incredibly important. The fact of the matter is, error messages are just a part of programming: they are seen by inexperienced and very experienced developers alike. The only difference is, the more experience you have dealing with error messages, the less time you’ll need to spend trying to fix them.
  • learn how to read error messages and extract the relevant details of the problem quickly. The first time you see an error message, it will take you a while to decode what it actually means. But after you’ve seen hundreds of error messages (and you will see hundreds!), you will be able to pinpoint the problem’s location and the relevant details you need in order to fix it.

    不仅仅要解决问题,更要找到问题的根源。关注解决问题的细节。

  • Initially, you will probably ask for help on each error message you see. Over time, you’ll learn to ask for help less frequently by double-checking your code and conducting smart Google searches.

    学习提问和搜索的技巧。

True confidence comes from struggling through a problem you have no idea how to solve, and discovering a solution on your own.

你可能感兴趣的:(how to learn coding)