SGShikhar Guptainthecleancommit.hashnode.dev00Functions in JavaScriptApr 15 · 6 min read · In the previous blog, we learned how to control the flow of our program using conditions like if, else, and switch. Now your program can make decisions. But there is still a problem. Imagine writing tJoin discussion
MRMuqaddas Rashidinrebooted-engineer.hashnode.dev00I Took a Career Break to Be a Mom. Here's Why I'm Coming Back — and Why Now.Mar 29 · 6 min read · I want to tell you something I've been sitting with for a while. Before the break, I was a software engineer building production AI systems — chatbots processing real banking transactions, automation Join discussion
SShayintoddlerstech.hashnode.dev00Handling Errors so you can save a day Mar 26 · 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 JsMar 26 · 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.dev00if you know function you know callbackMar 26 · 2 min read · even 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 hJoin discussion
SShayintoddlerstech.hashnode.dev00Async/Await in JavaScriptMar 26 · 3 min read · to 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 pJoin discussion
SShayintoddlerstech.hashnode.dev00Understanding String Interpolation like a pro Mar 26 · 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
SSSubhasis Samantasingharinjs-blog-subhasis.hashnode.dev00Understanding Variables and Data Types in JavaScriptMar 14 · 5 min read · Introduction When writing programs, we often need to store information such as a person's name, age, or whether someone is a student. In JavaScript, this information is stored using variables. You canJoin discussion
SShayintoddlerstech.hashnode.dev00Hitting the Bull's Eye with Arrow FunctionsMar 7 · 3 min read · Does 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 aJoin discussion
Hhimanshuinblogs-himanshu.hashnode.dev00Day 20 - Search in Rotated Sorted ArrayFeb 28 · 3 min read · Question You are given an array of length n which was originally sorted in ascending order. It has now been rotated between 1 and n times. For example, the array nums = [1,2,3,4,5,6] might become: [3Join discussion