From 33cff927e00bbd0fcde1095714b5b3f9ad548010 Mon Sep 17 00:00:00 2001 From: Aditya Jaiswal <104018992+Aditya-jaiswal07972@users.noreply.github.com> Date: Thu, 16 Oct 2025 13:49:17 +0530 Subject: [PATCH] fix(curriculum): remove unnecessary comma in JS variable lecture (#62851) --- .../672d497cb1a1675e47bf7ea1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lecture-introduction-to-javascript/672d497cb1a1675e47bf7ea1.md b/curriculum/challenges/english/blocks/lecture-introduction-to-javascript/672d497cb1a1675e47bf7ea1.md index d665e7131e6..b15938fe56a 100644 --- a/curriculum/challenges/english/blocks/lecture-introduction-to-javascript/672d497cb1a1675e47bf7ea1.md +++ b/curriculum/challenges/english/blocks/lecture-introduction-to-javascript/672d497cb1a1675e47bf7ea1.md @@ -11,7 +11,7 @@ In JavaScript, variables act as containers for storing data that you can access You can think of variables as boxes that hold values. With variables, you can keep track of things like numbers or text and refer to these values whenever you need them in your program. -One way to declare a variable in JavaScript, is to use the `let` keyword. You will learn more about the `let` keyword as well as other ways to declare variables in future lessons. +One way to declare a variable in JavaScript is to use the `let` keyword. You will learn more about the `let` keyword as well as other ways to declare variables in future lessons. Here's an example of using `let` to declare a variable called `age`: