RRaainsotheara-blog.hashnode.dev·Apr 16 · 5 min read7 VS Code Settings That Actually Make You FasterMost "VS Code tips" articles are really extension lists. This one isn't. Extensions are great, but the built-in settings in VS Code are where most of the real productivity wins live — and most develop00
RRaainsotheara-blog.hashnode.dev·Apr 16 · 6 min readvar vs let vs const: Which Should You Actually Use in 2026?If you've been learning JavaScript recently, you've probably seen all three of these in different tutorials: var name = "Alice"; let name = "Alice"; const name = "Alice"; They all look like they do t00
RRaainsotheara-blog.hashnode.dev·Apr 16 · 7 min readUnderstanding async/await in JavaScript: A Beginner's Guide With Real ExamplesIf you've been writing JavaScript for more than a few weeks, you've probably run into code that looks something like this: getUser(userId, (err, user) => { if (err) return handleError(err); getPos00