From 48d6a5ae0f00f228e6c4ce9bbbe8912901bac8b6 Mon Sep 17 00:00:00 2001 From: roseshay <165499006+roseshay@users.noreply.github.com> Date: Tue, 7 May 2024 15:13:27 -0700 Subject: [PATCH] Update what-is-javascript-learn-to-code-in-javascript.md --- .../lesson/what-is-javascript-learn-to-code-in-javascript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/lesson/what-is-javascript-learn-to-code-in-javascript.md b/src/content/lesson/what-is-javascript-learn-to-code-in-javascript.md index 39ee1d5e6..2207009c8 100644 --- a/src/content/lesson/what-is-javascript-learn-to-code-in-javascript.md +++ b/src/content/lesson/what-is-javascript-learn-to-code-in-javascript.md @@ -132,7 +132,7 @@ What operations can I do to variables? Depending on the data-type you have a few + Numbers are easy, you can do whatever math operation you want. + Strings can be concatenated (merged), split, converted to Upper or Lower Case, etc. -+ You cannot do much to Null, Booleans, and Undefined data-types. ++ You can't do much to Null, Booleans, and Undefined data-types. + We will talk about Arrays and Objects in a different section. They require a lot more attention. ## Functions