Skip to content

Commit

Permalink
Merge pull request #29142 from Maddily/patch-4
Browse files Browse the repository at this point in the history
More On State: Separate –s for plural from console.log
  • Loading branch information
wise-king-sullyman authored Dec 6, 2024
2 parents 62c74a5 + e91110b commit 38d14ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion react/states_and_effects/more_on_state.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ These are the logs:

![browser console of the above code snippet](https://cdn.statically.io/gh/TheOdinProject/curriculum/103edd69831b1f0e946258009fe36a462c70c163/react/states_and_effects/more_on_state/imgs/00.png)

Uh-oh, what is happening? Let's break it down (ignore the double `console.logs` for the render case; this is covered in the upcoming lessons).
Uh-oh, what is happening? Let's break it down (ignore the double `console.log`s for the render case; this is covered in the upcoming lessons).

1. The component renders for the first time. The `person` state variable is initialized to `{ name: 'John', age: 100 }`. The "during render" `console.log` prints the state variable.
1. The button is clicked invoking `handleIncreaseAge`. Interestingly, the `console.log` before and after the `setPerson` call prints the same value.
Expand Down

0 comments on commit 38d14ef

Please sign in to comment.