SShayintoddlerstech.hashnode.dev路Mar 26 路 4 min readHandling Errors so you can save a day i am confident that you have faced errors in your life but this life hardly allows to manage those and lets you move forward :( while programming too when an error is occurred you have seen that a big00
SShayintoddlerstech.hashnode.dev路Mar 26 路 2 min readSynchronous vs Asynchronous Jswhat is synchronous code ? JavaScript is fundamentally a synchronous, single-threaded language that executes code line-by-line in a sequential order, where each instruction must complete before the 00
SShayintoddlerstech.hashnode.dev路Mar 26 路 2 min readif you know function you know callbackeven if you have heard callback function for the first time , let me clear one thing it is no different from a function . If you can digest this then callbacks will be damn easy . you should already h00
SShayintoddlerstech.hashnode.dev路Mar 26 路 3 min readAsync/Await in JavaScriptto understand why async nature was introduced you must know about callbacks and promises . after reading these you will know about callback hell and how promises solve it . now there is problem with p00
SShayintoddlerstech.hashnode.dev路Mar 26 路 2 min readUnderstand 'this' like never beforei am sure you have used this in you daily life to point something so that others can know what are you talking about . if you have this understanding then you are good to go . the definition goes as -00
SShayintoddlerstech.hashnode.dev路Mar 26 路 2 min readUnderstanding String Interpolation like a pro have you ever used string concatenation to adjust variables between strings ? if yes then you know how troublesome that is . let name = "harry" let age = 15 let address="new york usa" console.log("my00
SShayintoddlerstech.hashnode.dev路Mar 26 路 2 min readDestructuring In JavaScriptwhat do you understand by destructure in general ? you might think like breaking a structure into smaller components . if you have this much idea then we can move ahead Destructure it allows to break 00
SShayintoddlerstech.hashnode.dev路Mar 26 路 2 min readMaps and Sets in Js lets first talk about objects . You know about them right ! if not then you must read blog on objects . keys in objects are always string or symbols , nothing else . maps has key value pairs like obje00
RSRahul Shuklaindevopsjourneywithrahul.hashnode.dev路Mar 12 路 5 min readLinux File Permissions For DevOps BeginnersWhen I started learning Linux for DevOps, everything felt exciting. Every new command felt like unlocking a new level. I learned commands like: ls cd mkdir grep Slowly, the Linux terminal started fee00
SShayintoddlerstech.hashnode.dev路Mar 7 路 3 min readHitting the Bull's Eye with Arrow FunctionsDoes Arrow function has 馃徆? yeah kind of . Well apart from fancy name it completely works like a regular function . It supports passing arguments and do whatever you want inside its block and return a00