ABAman Bishtinamanbishtcoder.hashnode.dev路Aug 29, 2023 路 3 min readJavaScript FunctionsWhat is a Function? A function is a reusable piece of code that performs a particular task or executes a set of instructions and returns something. In JavaScript, functions are created by using the 'function' keyword followed by the function name (it...00
ABAman Bishtinamanbishtcoder.hashnode.dev路Oct 10, 2022 路 4 min read5 things every developer should know 馃幆Hello everyone today we are going to talk about how to improve development skills and save your precious time while coding. These things are easy to remember and it will optimize your productivity. 1. IDE/Editor shortcuts: The purpose of shortcuts is...00
ABAman Bishtinamanbishtcoder.hashnode.dev路Sep 19, 2022 路 4 min readIntroduction To BlockchainYou might hear about blockchain, cryptocurrency, and web3.0, these terms are becoming famous day by day. So in this article, we will talk about blockchain technology, which is the base of all these technologies. So let's get started. What is a blockc...01K
ABAman Bishtinamanbishtcoder.hashnode.dev路Sep 1, 2022 路 2 min readJavaScript Fetch APISummary In this article, you will learn about JavaScript Fetch API and how to fetch the resource across the network. JavaScript Fetch API is similar to the XmlHttpRequest (XHR) object and performs similar tasks as XMR object. So now there is no ne...00
ABAman Bishtinamanbishtcoder.hashnode.dev路Aug 27, 2022 路 2 min readScope in JavaScriptScope The Scope is a range of any variable where you can access it. Or you can say Scope is a type of container with a specific range of functions and variables. While in JavaScript the default scope is window scope. Types of Scopes Global Scope Loc...00