Skip to content

Commit 84c25eb

Browse files
SunJieMingSunJieMing
authored andcommitted
Updated README
1 parent 5dbb91d commit 84c25eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# JavaScript II Mini
22
## Topics we will cover
33
* Recursion
4-
* the 'this' keyword
4+
* the `this` keyword
55
* constructor functions
66
* classes
77
### Instructions
@@ -16,7 +16,7 @@
1616
* when solving complex algorithms recursion comes in handy. It is not that great for smaller, less complex algorithms.
1717
* For every recursive function, you'll need to establish what is called a `base case`. A `base case` is a condition that when triggered, will discontinue the call to your function.
1818

19-
### The "this keyword
19+
### The `this` keyword
2020
* Because JavaScript is both an Object Oriented and Functional Programming language, it has some very interesting concepts built into it.
2121
* The 'this' keyword is one of those querky concepts that tend to trip up a lot of people coming into JavaScript.
2222
* You can think of this, as a Pointer to an object. For example, you can use the this keyword to reference an object without having to refer to that object's name.

0 commit comments

Comments
 (0)