Shobo Adefowopetaiwoadefowope.hashnode.dev·Dec 2, 2024Understanding the map() Method for JavaScript Arrays: A Simple GuideThe map() method creates a new array by applying a provided function (callbackFn) to each element of the original array. It’s perfect for transforming data without modifying the original array. Syntax array.map(callbackFn, thisArg) callbackFn: A fu...JavaScript
Hitesh Venugopalanwatch-me-dev.hashnode.dev·Nov 16, 2024Understanding JavaScript Classes: A Beginner's GuideIn simple terms, a class in JavaScript is like a recipe or blueprint for creating objects. It bundles together the data (called properties) and actions (called methods) that those objects will have. The object I mention here is different from the dat...JavaScript
Hitesh Venugopalanwatch-me-dev.hashnode.dev·Nov 11, 2024Sync vs Async: A Code-Off!Since I already have some knowledge about basic HTML, CSS, and JavaScript, I decided to begin with Asynchronous and Synchronous JavaScript .Let me share what I’ve learnt! Synchronous Code Synchronous code is JavaScript that executes line by line in ...3 likes·46 readsJavaScript
hackthichackthic.hashnode.dev·Oct 3, 2024This is the first day of the backend Development learning: Advanced JavaScriptThese are the 13 important topics to learn before revising the backend in MERN Core JavaScript Concepts Functions Asynchronous Programming Object-Oriented Programming (OOP) Event Loop and Concurrency Model Working with APIs Modules File Syste...chai aur javascript
code-passionchinumoon.hashnode.dev·Aug 20, 2024Understanding the Fetch API: The Future of Network Requests in Web DevelopmentIntroductionThe Fetch API represents a major evolution in how web applications interact with servers and retrieve content over the network. Introduced as a modern alternative to the XMLHttpRequest (XHR), the Fetch API offers more power, flexibility, ...1 likeWeb Development
Jobayed hossenjobayed.hashnode.dev·Aug 19, 2024In JavaScript, how can I duplicate an object?We knew that there are two built-in ways to create copies: Object.assign() and structureClone(). But could you kindly tell me whether there's a way to replicate a property with non-enumberable configuration? I'll talk about that and my experience wit...js
Suriya Tasmim Dishablog.suriyadisha.com·Feb 4, 2024JavaScript 101: A Beginner's Guide To The Call StackA Call Stack is a mechanism for the interpreter to keep track of which function is running right now and which function needs to run next. JavaScript is a single-threaded programming language. That means it can do one thing at a time and has only one...62 readsJavaScript
Miks Casalmikscasal.hashnode.dev·Nov 10, 2023Learn to Code for Free in 2024: The Best Websites for Aspiring DevelopersHey there, future coders! 👋🏻 If you're looking for some awesome resources to learn how to code, you've come to the right place. I'm going to share with you some of the websites that helped me get started on my coding journey. These websites are fun...35 readsCareer Shiftlearntocode
The Tech Loverhollad.hashnode.dev·Oct 16, 2023Mastering JavaScript: A Comprehensive Guide for BeginnersJavaScript, often hailed as the "language of the web," is a programming language that lies at the heart of modern web development. With JavaScript, you can bring your web pages to life, add interactivity, and create dynamic content. But, the world of...3 likeslearnjavascript
Emmanuel Ayinbotaayinbota.hashnode.dev·Sep 18, 2023Learn JavaScript for free with the best resources across the web.Introduction Being a newbie in web development can appear intimidating because the field requires you to know programming languages such as JavaScript. As one of the most popular programming languages, JavaScript has become a highly relevant skill to...3 likes·145 readsJavaScript