|
You are here |
alexop.dev | ||
| | | | |
jhannes.github.io
|
|
| | | | | My previous blog post took off on Twitter. It pointed out a problem: Insisting on the obligation to follow certain rules at all times isn't actually helping people work better. The most common question (or objection) I got to the blog post was: So how do we teach new coders how to code well. This blog post is about that topic. First learn to collaborate The most important skill we should teach is how to work well with others on a shared code base. | |
| | | | |
yakovfain.com
|
|
| | | | | This blog continues my React/TypeScript miniseries and the previous blogs are: 1. Let's start coding with TypeScript and React.js 2. React.js: A functional component and its state 3. Using the React.js state hook in the weather app In this blog, I'll add the useEffect() hook to fetch the weather info in the app that we... | |
| | | | |
andreabergia.com
|
|
| | | | | Error handling is a fundamental aspect of programming. Unless you are writing hello world, you will need to handle errors in your code. In this post, I will discuss a bit the most common approaches used by various programming languages. Return error codes This is one of the most ancient strategies - if a function can fail, it can simply return an error code - often a negative number, or null. | |
| | | | |
www.binovarghese.com
|
|
| | | JavaScript code execution involves a sequence of steps managed by the JavaScript engine, primarily through the use of the call stack and execution contexts... | ||