Skip to content

Commit

Permalink
Fix slide typos
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdBarho committed Oct 10, 2024
1 parent df73731 commit 498f9af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lesson08.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ console.log('The car has ' + car.wheels + ' wheels');
* What's the result?

```js
console.log('The car has undefined wheels');
The car has undefined wheels
```
<!-- .element: class="fragment" -->

Expand Down Expand Up @@ -290,7 +290,7 @@ let myCity = me.address.city;
```js
let me = {
name: "Grace",
greeting: function() {
greeting: function(dayOfWeek) {
if (dayOfWeek === "Monday") {
return "Get out of my face";
} else {
Expand Down

0 comments on commit 498f9af

Please sign in to comment.