AIAbhilash Ipintechwithabhilash.hashnode.dev0010 Essential Linux Commands Every Beginner Should Know2d ago · 3 min read · Introduction Linux is one of the most widely used operating system in the world. It is widely used in servers, cloud computing, and software development environments.Many IT professionals and developeJoin discussion
SShayintoddlerstech.hashnode.dev00Handling Errors so you can save a day 3d ago · 4 min read · 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 bigJoin discussion
SShayintoddlerstech.hashnode.dev00Synchronous vs Asynchronous Js3d ago · 2 min read · what 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 Join discussion
SShayintoddlerstech.hashnode.dev00Understanding String Interpolation like a pro 3d ago · 2 min read · 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("myJoin discussion
SShayintoddlerstech.hashnode.dev00Spread vs Rest Operators3d ago · 2 min read · it is very confusing to differentiate between the two as both have same syntax (...) . lets look at them one by one . Spread Operator Expands an iterable into individual elements resulting in a new arJoin discussion
SShayintoddlerstech.hashnode.dev00Maps and Sets in Js 3d ago · 2 min read · 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 objeJoin discussion
SShayintoddlerstech.hashnode.dev00new Keyword in Js3d ago · 2 min read · have you ever heard of word new ? have you ever used it ? I will try to link that new to this new in js . in real life whenever you used new with something it means it is not used by anybody and you wJoin discussion
SSouvikinsouvikbuilds-blogs.hashnode.dev00How Node.js Actually Works (V8 + libuv + Bindings)5d ago · 3 min read · Ever Wondered Why Node.Js is So fast , Even it is single threaded, it handles thousand of requests without breaking a sweat. Atfirst it looks like a magic, but there are 3 things behind this Node JS: Join discussion
SShayintoddlerstech.hashnode.dev00Flatten Array like a pro 5d ago · 2 min read · have you ever seen nested arrays ? lets see some What are nested arrays? arrays whose elements can also be arrays and so on . let nestedArrays = [4,5,6,[1,2,[7,8,9],2],8] Did you observe ? how elemenJoin discussion
SShayintoddlerstech.hashnode.dev00Rich Business of import and export 5d ago · 3 min read · Have you read my blogs on functions ? not yet try now . because if you have read it or even know already how useful functions are ! then you must think about a situation . you want to make an app for Join discussion