<28/>
28 Lazy Coder

Category: JavaScript

Posts
A

JavaScript Async/Await Explained: A Complete Beginner’s Guide

Have you ever written a bunch of .then() chains and lost track of which bracket closes which? I remember the…

JavaScript · 16 min read
B

JavaScript Event Loop Explained: Call Stack, Web APIs & Callback Queue

Have you ever written code where a setTimeout set for 0 milliseconds still runs after other code that comes below…

JavaScript · 14 min read
C

JavaScript Scope Explained: Global, Function & Block Scope

Have you ever declared a variable in one part of your code, and then got a confusing error like ReferenceError:…

JavaScript · 17 min read
D

JavaScript Array Methods Explained: A Complete Beginner’s Guide with Examples

Think about a to-do list app. You add tasks, you remove tasks, you mark some as done, and sometimes you…

JavaScript · 11 min read
E

JavaScript ES6 Features Explained: A Complete Beginner’s Guide

Have you ever looked at two pieces of JavaScript code that do the exact same thing, but one looks short…

JavaScript · 11 min read
F

JavaScript Events Explained: A Complete Beginner’s Guide

Think about the last time you used a website. You clicked a button. You typed your name into a box.…

JavaScript · 11 min read
G

JavaScript DOM Manipulation Explained

When you visit a website and click a button, open a menu, submit a form, or see content update without…

JavaScript · 8 min read
H

JavaScript Data Types: A Complete Beginner’s Guide with Examples

Before variables, before functions, before anything else — every value in JavaScript has a type. A number behaves differently from…

JavaScript · 9 min read
I

JavaScript Conditional Statements: A Complete Beginner’s Guide with Examples

Every app you’ve ever used makes decisions constantly. Show a “Welcome back” message if the user is logged in. Apply…

JavaScript · 8 min read
J

JavaScript Objects: A Complete Beginner’s Guide with Examples

If you’ve already gone through our guide on JavaScript functions, you know how to bundle logic together. Objects do something…

JavaScript · 9 min read