Skip to content

Instantly share code, notes, and snippets.

@giovannamoeller
Created September 20, 2022 21:30
Show Gist options
  • Select an option

  • Save giovannamoeller/889cfaf68de85d461b6b658dc625d019 to your computer and use it in GitHub Desktop.

Select an option

Save giovannamoeller/889cfaf68de85d461b6b658dc625d019 to your computer and use it in GitHub Desktop.
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