Created
September 20, 2022 21:30
-
-
Save giovannamoeller/889cfaf68de85d461b6b658dc625d019 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const student = { | |
| name: 'John', | |
| age: 16, | |
| averageGrade: 8 | |
| } | |
| function addOneToStudentGrade(student) { | |
| student.averageGrade += 1; | |
| return student; | |
| } | |
| addOneToStudentGrade(student); | |
| console.log(student.averageGrade); // 9 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment