Tag

#javascript

9 articles tagged #javascript. See all tags →

Synchronous vs Asynchronous Programming, Explained
Tech··8 min

Synchronous vs Asynchronous Programming, Explained

Synchronous code waits, asynchronous code moves on. That one difference decides whether your server handles ten users or ten thousand. Here is what blocking, event loops, and async/await actually mean, and when the complexity is worth it.

asyncconcurrencyjavascript
Frontend vs Backend vs Full Stack, Explained
Tech··8 min

Frontend vs Backend vs Full Stack, Explained

Frontend is what you see, backend is what you don't, and full stack is doing both. Here is what each role actually builds, the tools they use, and honest career advice if you are just starting out.

frontendbackendfull stack
Compiled vs Interpreted Languages Explained
Tech··8 min

Compiled vs Interpreted Languages Explained

Everyone learns that C is compiled and Python is interpreted, then discovers Python has a bytecode compiler and JavaScript gets compiled to machine code at runtime. The clean split is mostly a lie. Here is what is actually going on.

compilersinterpretersjit
pnpm vs npm: The Real Reason to Switch Isn't Speed
Tech··15 min

pnpm vs npm: The Real Reason to Switch Isn't Speed

Most pnpm vs npm comparisons lead with install times. They're missing the point. npm's flat node_modules silently lets your code import packages you never declared, and the bug only surfaces in production. pnpm refuses to lie to you.

pnpmnpmjavascript
How JavaScript and jQuery Are Related
Tech··5 min

How JavaScript and jQuery Are Related

jQuery is a JavaScript library that dominated web development for a decade. The reason it existed, and the reason it doesn’t need to anymore, is most of the story of how the modern web got built.

javascriptjqueryweb development
Why Java and JavaScript Are Not the Same Thing
Tech··5 min

Why Java and JavaScript Are Not the Same Thing

The most common interview-killing question for people new to programming is whether Java and JavaScript are the same. They are not. Here’s the actual story of how the names ended up that confusing.

javajavascriptprogramming history
Java vs JavaScript: Syntax Side-by-Side
Tech··6 min

Java vs JavaScript: Syntax Side-by-Side

Despite the names, Java and JavaScript are completely different languages. The syntax overlap is surface-level. Here’s the comparison done honestly.

javajavascriptprogramming