Skip to content

Commit

Permalink
Fix typo in JS basics: variables and operators
Browse files Browse the repository at this point in the history
  • Loading branch information
ruben-vl authored Aug 22, 2024
1 parent 547b3fd commit 482eeb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion foundations/javascript_basics/variables_and_operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ These are the building blocks of any program, you can think of variables as "sto

![Variable Box Illustration](https://cdn.statically.io/gh/TheOdinProject/curriculum/d39eaf2ca95e80705f703bb218216c10508f5047/foundations/javascript_basics/fundamentals-1/imgs/00.png)

You can declare variables using the `let` keyword. Lets try it! (No pun intended).
You can declare variables using the `let` keyword. Let's try it! (No pun intended).

```javascript
let name = "John";
Expand Down

0 comments on commit 482eeb9

Please sign in to comment.