Srijan - author | Reacted Node
SrijanMar 08, 2025 - JavaScript

What is Dynamic Typing in JavaScript?

What is Dynamic Typing in JavaScript? - Reacted Node
Learn what dynamic typing in JavaScript is, how it works, and its impact on variable types, type coercion, and comparisons. Understand key concepts with examples and best practices to write more predictable JavaScript code.
Read More

Srijan - author | Reacted Node
SrijanMar 07, 2025 - JavaScript

Understanding variable hoisting in JavaScript

Understanding variable hoisting in JavaScript - Reacted Node
Understand JavaScript variable hoisting and how var, let, and const behave differently. Learn about the Temporal Dead Zone (TDZ), common pitfalls, and best practices to write cleaner, error-free code.
Read More

Srijan - author | Reacted Node
SrijanMar 03, 2025 - JavaScript

Mastering variable scope in JavaScript: var, let and const

Mastering variable scope in JavaScript: var, let and const - Reacted Node
This article focuses on explaining the scope differences between var, let, and const using clear examples, empowering you to write robust and maintainable JavaScript code.
Read More

Srijan - author | Reacted Node
SrijanMar 01, 2025 - JavaScript

How to create and check read-only properties in JavaScript objects using Object.defineProperty()

How to create and check read-only properties in JavaScript objects using Object.defineProperty() - Reacted Node
Master Object.defineProperty() in JavaScript. Explore how to set the 'writable' attribute to create immutable properties and protect your object data.
Read More

Srijan - author | Reacted Node
SrijanFeb 28, 2025 - JavaScript

What is strict mode in JavaScript and why should you use it?

What is strict mode in JavaScript and why should you use it? - Reacted Node
Tired of hidden bugs in your JavaScript code? Strict mode can help! Find out how strict mode prevents common errors, improves security, and makes your code easier to maintain.
Read More

Srijan - author | Reacted Node
SrijanFeb 20, 2025 - JavaScript

The evolution of JavaScript without breaking the web and how strict mode helped

The evolution of JavaScript without breaking the web and how strict mode helped - Reacted Node
Born in the early days of the internet, JavaScript quickly became essential for creating interactive web pages. However, like any technology in its early stage, early versions had some quirks.
Read More

Srijan - author | Reacted Node
SrijanFeb 19, 2025 - JavaScript

JavaScript backward compatibility and how transpilers and polyfills bridge the gap

JavaScript backward compatibility and how transpilers and polyfills bridge the gap - Reacted Node
This article delves into the concept of backward compatibility in JavaScript, exploring its advantages, challenges, and how tools like transpilers and polyfills help bridge the gap.
Read More

Srijan - author | Reacted Node
SrijanFeb 5, 2025 - JavaScript

What is ECMAScript?

What is ECMAScript? - Reacted Node
ECMAScript (ES) is the standardized specification that serves as the foundation of JavaScript. ECMAScript is the rulebook, while JavaScript is the most widely used implementation.
Read More

Srijan - author | Reacted Node
SrijanJan 29, 2025 - JavaScript

How to iterate a Map in Javascript?

How to iterate a Map in Javascript? - Reacted Node
In this article, we will learn how to iterate over a Map using different methods available.
Read More

Srijan - author | Reacted Node
SrijanJan 28, 2025 - JavaScript

How to create a Javascript Map from an Array or an Object and vice versa

How to create a Javascript Map from an Array or an Object and vice versa - Reacted Node
In this article, we will learn how to iterate over a Map using different methods available. So, let's dive in and learn how to loop over a Map.
Read More

Srijan - author | Reacted Node
SrijanJan 27, 2025 - JavaScript

Understanding JavaScript's Map data structure

Understanding JavaScript's Map data structure - Reacted Node
The Map is a new JavaScript data structure introduced in ES6 for managing key-value-pairs.
Read More

Srijan - author | Reacted Node
SrijanJan 26, 2025 - JavaScript

Truthy and Falsy Values in JavaScript

Truthy and Falsy Values in JavaScript - Reacted Node
When a value is truthy in Javascript, it does not means that the value is equal to true but it means that the value coerces to true when evaluated in a boolean context.
Read More

Srijan - author | Reacted Node
SrijanJan 25, 2025 - JavaScript

Why <script> tags should be placed at the end of body tag?

Why <script> tags should be placed at the end of body tag? - Reacted Node
As we know that HTML is loaded and executed line by line. So, when the browser encounters a <script> tag, it loads and executes the javascript code on the spot.
Read More

Srijan - author | Reacted Node
SrijanJan 24, 2025 - JavaScript

JavaScript Variables 101 - Understanding and Using Variables Effectively

JavaScript Variables 101 - Understanding and Using Variables Effectively - Reacted Node
In JavaScript, a variable is like that labeled box. It's a way to store a piece of information – whether it's a number (like your age), a word (like your name), or even something more complex (like a list of your favorite foods).
Read More

Srijan - author | Reacted Node
SrijanJan 22, 2025 - JavaScript

Why JavaScript is called "JavaScript"?

Why JavaScript is called "JavaScript"? - Reacted Node
Is JavaScript related to Java? In this article we will learn how JavaScript got its name and the truth behind it.
Read More

Srijan - author | Reacted Node
SrijanJan 20, 2025 - JavaScript

How to make the first letter of a String Uppercase in JavaScript

How to make the first letter of a String Uppercase in JavaScript - Reacted Node
In this article, we will learn how to make the first letter of a string uppercase (also known as capitalizing the string).
Read More

Srijan - author | Reacted Node
SrijanUpdated Jan 19, 2025 - JavaScript

Working with Timestamps in JavaScript

Working with Timestamps in JavaScript - Reacted Node
In this article, we'll explore how to create, manipulate, and format timestamps effectively.
Read More

Srijan - author | Reacted Node
SrijanJan 18, 2025 - JavaScript

How to Check if an Array Includes a Value in JavaScript

How to Check if an Array Includes a Value in JavaScript - Reacted Node
In this article we will learn about the includes() method in JavaScript which help us to determine whether an array contains a specific value.
Read More