aalampatilblogs.hashnode.devUnderstanding Variables and Data Types in JavaScriptTopics to Cover What variables are and why they are needed How to declare variables using var, let, and const Primitive data types (string, number, boolean, null, undefined) Basic difference betwe3d ago·4 min read
aalampatilblogs.hashnode.devJavaScript Operators: The Basics You Need to KnowTopics to Cover What operators are Arithmetic operators (+, -, *, /, %) Comparison operators (==, ===, !=, >, <) Logical operators (&&, ||, !) Assignment operators (=, +=, -=) What operators ar4d ago·3 min read
aalampatilblogs.hashnode.devControl Flow in JavaScript: If, Else, and Switch Explained Topics to Cover What control flow means in programming The if statement The if-else statement The else if ladder The switch statement When to use switch vs if-else What Control Flow Means Cont4d ago·3 min read
aalampatilblogs.hashnode.devArrow Functions in JavaScript: A Simpler Way to Write Functionlet;s get straight point to point when you first learn javaScript, you usually start with the the og function keyword. It works perfectly fine ,but as your code grows, you start noticing how repetitiv5d ago·4 min read
aalampatilblogs.hashnode.devJavaScript Array Methods Made Simple (With Real Examples You’ll Actually Understand)if you take a moment and notice, programming languaga are semantic in nature, 90% of the time, what you understand of a term, is what the function doeslike, just take a example we have below in the di5d ago·5 min read