So TypeScript Is Just JavaScript with Some Extra Drama?

February 11, 2026

So TypeScript Is Just JavaScript with Some Extra Drama?

You know that friend who corrects your grammar in the middle of a conversation?

That’s TypeScript.

At first it feels like your code suddenly has a strict teacher watching every move you make. But once you understand why it exists, the “extra drama” starts to make sense.

JavaScript: The Chill One

JavaScript is the language that runs the internet.

It’s flexible, forgiving, and honestly… a little too trusting.

You can declare a variable as a number, secretly turn it into a string halfway through, and JavaScript will just shrug and move on.

let age = 25; age = "twenty-five"; // JavaScript: "sure, why not"
GitHub
LinkedIn