SLShreyas Landgeinlearnwithshreyas.hashnode.dev·Mar 4 · 6 min readUnderstanding Variables and Data Types in JavaScriptWhen learning JavaScript, one of the first concepts encountered is variables and data types. These concepts are fundamental because almost every program relies on storing and working with information.00
SLShreyas Landgeinlearnwithshreyas.hashnode.dev·Mar 1 · 6 min readJavaScript Promises What is Promise ? A Promise is an object that represents the eventual completion means fulfillment or failure means rejection of an asynchronous operation and its resulting value. Asynchronous operati00
SLShreyas Landgeinlearnwithshreyas.hashnode.dev·Feb 28 · 4 min readArrow Functions in JavaScriptIntroduction When learning JavaScript, one of the important things you study is functions. Functions help us reuse code and organize logic. But normal functions sometimes look long and repetitive. Tha00
SLShreyas Landgeinlearnwithshreyas.hashnode.dev·Feb 24 · 5 min readArray Methods You Must KnowArrays are the most important topic in the JavaScript. Arrays store multiple values in a single variable, and JavaScript provides many built-in methods to work with arrays easily. In this article, we 00
SLShreyas Landgeinlearnwithshreyas.hashnode.dev·Jan 30 · 3 min readDNS Record TypesHow does a browser know where a website lives? When you type www.google.com into your browser, your computer has a one problem: Computers don’t understand names like google.com. They only understand numbers called IP addresses (like 142.250.190.14). ...00