You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# JavaScript II Mini
2
2
## Topics we will cover
3
3
* Recursion
4
-
* the 'this' keyword
4
+
* the `this` keyword
5
5
* constructor functions
6
6
* classes
7
7
### Instructions
@@ -16,7 +16,7 @@
16
16
* when solving complex algorithms recursion comes in handy. It is not that great for smaller, less complex algorithms.
17
17
* 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.
18
18
19
-
### The "this keyword
19
+
### The `this` keyword
20
20
* Because JavaScript is both an Object Oriented and Functional Programming language, it has some very interesting concepts built into it.
21
21
* The 'this' keyword is one of those querky concepts that tend to trip up a lot of people coming into JavaScript.
22
22
* 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