Synchronous vs Asynchronous Js
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

Search for a command to run...
Articles tagged with #technical-writing-1
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

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 big

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("my

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 obje

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 ar

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 w
