Javascript is required
·
5 min read

The Mistakes I Made In My First Software Project

The Mistakes I Made In My First Software Project Image

Before starting my professional career as a developer, I mainly developed Android apps using Java as the programming language. I got hired by a software service company, and we had to develop JavaScript-based applications for cars in my first project. So the first time in my life, I had to work with JavaScript, and I made many mistakes during this time which I now want to share with you.

The only man who never makes a mistake is the man who never does anything.

Theodore Roosevelt

Project setup

As I joined the project, there was one project manager and a senior developer. Both left the project after some weeks, and I combined the role of a developer and project manager. In my office room, two other senior developers also worked on similar JavaScript projects. The team developed about ten relatively small JavaScript apps, and my goal was to fix bugs and implement new features until the release. The release went well, and I got the opportunity to work on a more extensive app based on the same tech stack.

The project's tech stack consisted of JavaScript (ECMAScript 3), Apache Maven for building the application, and Karma + jasmine as the test runner. There was no HTML and CSS involved as the JavaScript code talked to a proprietary UI developed internally by the automotive company.

Learn the basics

One of my biggest mistakes was that I did not learn JavaScript properly. I just took a short online tutorial, which looked easy. But after this short tutorial, I had no idea about:

  • Closures
  • Scopes
  • this references
  • == vs ===
  • why to use "strict mode"
  • undefined is not a function
  • and all the other interesting aspects of JavaScript

If you are in a larger team with a code review process, this might not be a big problem because you will learn that lousy code should not find its way into the repository during the review process. But I was alone, and no one reviewed my code. I thought my basic JavaScript knowledge would be enough to do the job, but today I know that it was a terrible code, and I would do it today in a different way.

Technical mistakes

I want to talk about some of the most significant technical mistakes I made in this project.

A failure is not always a mistake, it may simply be the best one can do under the circumstances. The real mistake is to stop trying.

B. F. Skinner

Did not separate view from business code

I created a separate JavaScript file for each of the application's views. The problem was that I did not separate the view from the business logic. So these files contained nearly all the logic necessary to fill the screen with life.

It would have been a much better approach to use the MVC (Model-View-Controller) or some similar pattern to avoid the tight coupling of logic and view.

Documented all methods

I added JSDoc to every method in the application even if the method already had a declarative name.

Reading recommendation: Don’t comment your code!

Used window object as global state

This was probably my biggest mistake: I used the window object for global state and stored dozens of properties there. A summary of possible problems using the window object for the global state:

  • anyone can change the state at any time (it is mutable)
  • bad readability of the code
  • testing can be tricky
  • many more...

Reading recommendation: Why is global state so evil

Generic backend handler

To avoid code duplication in every file, I created a generic class that was used in every view to make HTTP requests. This was a very, very, very stupid decision and led to a large and unmaintainable hell of code.

Each method in this backend handler class consisted of a large switch-case statement to determine which view class made the call. As multiple views could trigger a request simultaneously, we also implemented a simple queue mechanism, making it more complex and unmaintainable.

It would have been a much better approach to handle the request in each of the views (ideally in each controller but as mentioned above I did not implement such an abstraction).

Bad unit tests

I wrote a lot of unit tests for the application, but in the end, they did not catch major bugs. I also did not write regression bugs after fixing a bug, so sometimes, I had to fix the same issue again. Additionally, coupling the view and business logic together in one class made it very hard to test as many dependencies had to be mocked.

Reading recommendation: How to know what to test

Result of the app

I finished the app on time and within budget, but the problems occurred after leaving the project. Of course, there were bugs, but the customer only provided a little budget to fix them. So my company assigned the tasks to working students or apprentices who just used quick dirty hacks to fix the bug. As you can imagine, this did not improve the already bad code base I left there.

Additionally, the app had to be rolled out in more regions with special business requirements. As the app was not scalable and flexible, this became quite a problem for the following developers of the project.

Conclusion

As you can maybe imagine it is not easy for me as a developer (or in general as a person) to talk publicly about my mistakes. But I think it is important for my personal development and I also want to take you the fear to talk about the mistakes you made. Also, you should not be afraid of making mistakes in your first software project, this can happen and you will learn a lot from them.

Asking questions is one of the most important things you can do if you are new to a programming language or project. If you don't ask questions when necessary, you may get into trouble, as happened to me. Especially if it is about defining a software architecture for a business application, you should ask a senior developer for advice. Get help from experienced developers as early and often as you can. If you are the only developer in the team, try establishing a code review process with a more experienced developer.

Cover Image by mohamed Hassan from Pixabay

I will never share any of your personal data. You can unsubscribe at any time.

If you found this article helpful.You will love these ones as well.
The 10 Favorite Features of My Developer Portfolio Website Image

The 10 Favorite Features of My Developer Portfolio Website

My Top Vue.js Interview Questions Image

My Top Vue.js Interview Questions

Why I Picked Vue.js as My Freelancer Niche Image

Why I Picked Vue.js as My Freelancer Niche

My Top React Interview Questions Image

My Top React Interview Questions