From 0f34f36bfaa46c31cb5f8c5dc9509e65030a752a Mon Sep 17 00:00:00 2001 From: Kezy <151378521+Kezy-d4@users.noreply.github.com> Date: Thu, 28 Nov 2024 22:34:02 -0500 Subject: [PATCH] Fix grammatical error --- foundations/javascript_basics/object_basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/foundations/javascript_basics/object_basics.md b/foundations/javascript_basics/object_basics.md index 4451c89fb05..be60fae8f2c 100644 --- a/foundations/javascript_basics/object_basics.md +++ b/foundations/javascript_basics/object_basics.md @@ -83,7 +83,7 @@ increaseCounterPrimitive(primitive); Take a moment and guess what will happen to `object` and what will happen to `primitive` after we make the function calls. -If you answered that the object counter would increase by 1, and the primitive counter wouldn't change, you're correct. Remember that the parameter `objectCounter` contains a *reference* to the same object as the `object` variable we gave it, while `primitiveCounter` contains only a copy of the primitive value only. +If you answered that the object counter would increase by 1, and the primitive counter wouldn't change, you're correct. Remember that the parameter `objectCounter` contains a *reference* to the same object as the `object` variable we gave it, while `primitiveCounter` only contains a copy of the primitive value.