JTJeff Tonginwind010.hashnode.dev·Jun 11 · 10 min readMalicious Binary Analysis In Malicious IPs and Domain Reconnaissance we trace the endpoints where the suspicious code is coming from. We're going to dive deeper, but I need some protections. The DNS, registry, and endpoint rec00
NMNikhil Maliinnm-javascript.hashnode.dev·May 10 · 5 min readString Polyfills and Common Interview Methods in JavaScript If you've ever been in a JavaScript interview and been asked to "implement trim() from scratch," you know the gut-drop feeling. But here's the thing that question isn't trying to trick you. It's check00
AKAshaaf Khaninashaaf.hashnode.dev·May 9 · 10 min readMastering JavaScript Strings and the Art of PolyfillsStrings are the DNA of the web. Almost everything you see on a screen from this blog post to the code you write is fundamentally a string. But in JavaScript, strings are more than just text; they are 00
ACAditya Chaudharyinadityachaudhary3.hashnode.dev·May 8 · 6 min readJavaScript: Important Topics to knowIn this article, we are going to see some small but important topics for writing better code as a developer. Here we will see different types of interesting topics, and this will keep going. Array Fl00
SKsagar kembleinblog.sagarkemble.dev·May 5 · 5 min readString Polyfills and Common Interview MethodsThe Method You've Used a Hundred Times You have called .toUpperCase(). You have called .includes(). You have chained .trim().split(",").map(...) without thinking twice. It works, so you move on. Then 00
KSKanishka Shashiinnodej.hashnode.dev·May 4 · 5 min readURL Parameters vs Query Strings in Express.jsWhen building web applications using Express.js on top of Node.js, handling user input through URLs is a fundamental concept. Two of the most common ways to pass data in a URL are: URL Parameters (Ro00
PKPratham Kumarinwithprathamkumar.hashnode.dev·Apr 26 · 3 min readTemplate Literals in JavaScript: Write Cleaner and Smarter Strings Introduction Working with strings is something every JavaScript developer does daily. But if you’ve ever written messy string concatenations using +, you know how quickly things can become hard to rea00
ACARKPARAVA CHAKRABORTYinunderstand-and-build-in-web.hashnode.dev·Apr 24 · 4 min readStrings Unlocked: Polyfills and Powerful Methods Every JavaScript Dev Should KnowString are one of the most important and common data type used in JavaScript. String methods are the way we modify a string. We use string methods in everyday word in JavaScript be it in string matchi00
MAMohammad Amaninmohammadaman.hashnode.dev·Apr 16 · 4 min readString Polyfills and Common Interview Methods in JavaScriptJavaScript string methods look simple on the surface, but they hide a lot of behavior that interviewers expect you to understand not just use. What string methods actually are In JavaScript, strings 00
NPNikhil Prasharinnikhilprashar.hashnode.dev·Apr 15 · 5 min readString PolyfillsWhat string methods are. Before looking at string methods, you should first understand what methods are. As we all know, in JavaScript everything is treated like an object. So whenever you use any da00