Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update what-is-javascript-learn-to-code-in-javascript.md #2290

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading