They said that I don't know JS - 1

I'm all about building scalable and robust applications, bringing over 5+ years of experience. As a Backend Software Engineer, I've driven efficiency improvements of up to 60%, thanks to my expertise in Go and JavaScript.
In my current role at Cudium, as a Senior Software Engineer, I've integrated backend systems with third-party applications, boosting our understanding of user engagement by 85%. Beyond coding, I enjoy mentoring, documentation, and spearheading security features for a safer application.
During my internship at Nomba, I honed skills in Node JS, MongoDB, and Java, improving data persistence for vendor services and reducing fraudulent transactions by over 60%.
At Kudi.ai, I implemented transactional features, optimized legacy code, and crafted an account balance slack notification service, boosting stakeholder efficiency by 75%.
At Airgateway, I was focused on enhancing support for agencies in their airline bookings.
When not in the tech world, you'll find me strumming a guitar, hitting the dance floor, or belting out a tune. Let's connect over coffee and chat about tech, career journeys, or the latest music trends!
I'm always looking to expand my network. Feel free to reach out at caleberioluwa@gmail.com
I did not know that I didn't know javascript—weird right? After all, it was my first programming language which I have been coding in for over 6 years, but this does not mean that I am a professional js scripter. I just learned how to use JS to solve my problems. So while working on a task in my place of work, my current CTO asked a javascript-related question which I thought I knew but of course, you should have figured out by now that I did not 🤨 . Funny right 🤣, how do we sometimes think we know everything? This got me thinking about whether I really do know JS. Fortunately, I remember coming across Kyle Simpson's book 'YDKJS series' once and I never thought I will have to read this book in my life since I thought I knew Javascript so well.
Ok, with that being said. The point of this article is to open your eyes to some of the key takeaways I learned from the first part of the series also there will certainly be links that I will add to this article at the end. I will be breaking this article into bullet points so that you can easily digest it. Ok let's get right at it
Javascript Code
Usually, JS is thought of as an interpreted language just because the source code is processed each time it runs but it's not entirely accurate. JS engine actually compiles that code on the fly and then runs the compiled code. It does not generally have to create an executable file so it can be called a compile language. Think about it. If you disagree please you can add your reason in the comment section after all we are all learning.
Value And Types
The concept of literals is just values existing in a JS source code for example
let title = "You don't know JS" console.log(title) // "You don't know JS" let n = 34; // n - 34Assuming there was a compiled version of JS in another reality which of course does not exist this will have been hard coded alongside the compiled version. The same goes for numbers, booleans.
Types in JS often involve the
implicitandexplicitcoercion which some people may have referred to as casting which is certainly wrong in the JS domain.Coercion can be learned even though people tend to say it is dangerous but we will talk about this in a later part.
Comments
Code is like humor. When you have to explain it, it’s bad. – Cory House
Found the above in a Twitter discussion here. Obviously, this is right and also wrong. Code is sometimes meant to be explanatory in that it explains itself like a story but also not all stories are self-explanatory. For this reason :
Code without comment is suboptimal
Too many comments are an indicator of a poorly written code
Comment should explain why and not what the code is doing.
Essentially these are the key takeaways for the first part of the discussion of this series.
So as not to be boring, this article will be broken down into parts which will be released in sequence.
Please share your thought about the article and if you find it interesting you can follow me on LinkedIn here






