Being a javascript programmer is great but we can never avoid the dreaded stack trace! 😡, most of these bugs are just one Google search away from being solved but sometimes Google can't help and you become stuck with this headache-inducing bug, but do not worry because I have some tips that will help you avoid most bugs.
1. Know your Sources and Sinks
First of all, what are Sources and Sinks, a Source is a process that generates a piece of information and a Sink is the consumer of this information.
Example:
This looks very trivial and from the surface, everything looks fine but looks can be deceiving, the function appears to only add a "%" at the end of the number and displays the resulting string, But when the code is executed you will get something similar to this 17.64650669753125%
. That does not look good.
This is a classic example of what can go wrong if you don't carefully check your sources or sinks.
The reason why the percentage is not a whole number comes from the Math.random
function because it only generates floating point numbers which we did not Math.floor. So let's fix that
The main point is to find data used before/by our function and work our way up the stream until we find the point where wrong/unexpected data is generated.
2. Avoid undefined
Sometimes we can be lazy and leave some variables undefined and expect that by the time we use them, they will be initialized. In some cases, such code is required but when the time comes to use them, it is best to have a default value.
Examples
Wrong usage.
let laterUsed;
doAsyncTask().then(()=>{
useVariable(laterUsed); // ❌ It could still be undefined
})
Correct usage.
let laterUsed;
doAsyncTask().then(()=>{
useVariable(laterUsed || externalAlternativeValue);
// ✅ Another value is used when the original value is undefined
})
Even more correct usage
doAsyncTask()
.then(result => {
useVariable(laterUsed)
})
.catch(e => {
// handle whatever happens when doAsyncTask() goes wrong
})
And also, avoid
- communicating between asynchronous processes using global variables.
- using
undefined
to indicate an error state. Or an absence of value.
3. Know your PASTA!
There are many different ways to write code and these styles have pasta based categorization that you need to understand in order to know which styles to use.
Spaghetti code
Avoid this, it does not matter that real spaghetti is delicious 😋, spaghetti code is characterized by tangled and messy code without any real structure/pattern you know.... like spaghetti and this code style is prone to a lot of bugs which are very hard to solve due to the aforementioned tangled messiness that is the code base.
Ravioli code
This coding style is in a very nice middle ground where the program is broken down into components that work well together but can also function as good on their own. Whether or not you write Ravioli code is based on how your program is structured.
Lasagna code
The holy grail of javascript development, well-structured components separated into layers to perform specific tasks through well-defined interfaces. Use this whenever you can because it reduces the risks of bugs and if they occur, they will be confined to a specific layer.
Another thing to note is please use type-checking when necessary.
4. Don't do too much at once
Sometimes we tend to write a lot of code without testing it each step of the way, this is very dangerous because when an error occurs you can't tell which new code caused this issue and will make you debug parts of your code that you don't need to which wastes time and can be stressing.
So each time you add a new feature or decide to route your app data differently, always run the code to make sure that part is okay.
4.5. Use linters
Please use linters! They really are good at helping enforce a good coding style and catch errors for you.
Conclusion
These are some tips I have for you so you can avoid as many bugs as possible and some of them apply to other languages apart from javascript.
Fun fact: I came up with number 4 because I wrote too much code without testing and spent 7 hours trying to debug it
Thanks to these wonderful people for their great advice.
[Deleted User]
Thanks for reading!!
Consider giving me a follow on Twitter and you can check out my previous post here
Top comments (4)
hmmm ...
Even More Correct Usage
If you're trying to avoid bugs in JavaScript, I'd really recommend
undefined
to indicate an error state. Or an absence of value.😄
Absolutely correct! 😃, may I add it in the post?
Please do! 👍😁
100% true, may I add it to the conclusion?