fix(curriculum): correct grammar in JavaScript review comment (#65292)

This commit is contained in:
Anirudh Mishra
2026-01-19 02:04:01 +05:30
committed by GitHub
parent 8b2707d9a8
commit 3c5ef03e6f
@@ -181,7 +181,7 @@ const score = 87;
if (score >= 90) {
console.log('You got an A');
} else if (score >= 80) {
console.log('You got a B'); // You got an B
console.log('You got a B'); // You got a B
} else if (score >= 70) {
console.log('You got a C');
} else {