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...Discusschai 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, ...Discuss·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...Discussjs
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...Discuss·59 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...Discuss·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...Discuss·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...Discuss·3 likes·145 readsJavaScript
Syed Shihabdesyed.hashnode.dev·Jul 26, 2023Unveiling Hidden Gems: Lesser-Known JavaScript FeaturesJavaScript, the ubiquitous programming language powering the interactive web, has grown exponentially over the years, evolving from a simple scripting language to a versatile and powerful tool for developers worldwide. While most of us are familiar w...Discuss·2 likes·82 readsJavaScript
Fortune Mlilopronounced.hashnode.dev·Feb 10, 2023A Beginner's Guide to Javascript: What You Need to KnowJavascript is a high-level programming language that is widely used on the web. It's one of the three core technologies of the World Wide Web, alongside HTML and CSS. With its popularity and versatility, it's no wonder that many developers are eager ...Discuss·2 likes·27 readsJavaScript
Debasish Lenkadebasishlenka.in·Feb 4, 2023Use cases for continue and break statements in JavaScript.In JavaScript, the continue and break statements are used to control the flow of execution within loops. The continue statement used to skip the current iteration of a loop and move on to the next iteration. It is often used when you only want to pro...Discuss·10 likes·90 readsUpWebJavaScript