Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Week3 homework #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open

Week3 homework #14

wants to merge 18 commits into from

Conversation

jshortz
Copy link

@jshortz jshortz commented Jul 14, 2019

No description provided.

we need to console.log(f1(x)). In the y-code, y is an object. The properties of an object can be altered this way,
so the function changes the value of x to 10. No alteration has been done to the variable reference itself. If f2
attempted to change the *value* of y (rather than an attribute of its object), it would yield results like the x-code.
For example, if the function is altered, val = { x: 10 }; return val;, it will return { x: 9 } */
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you get it (?). Another example:

let a = 4
let b = a
a += 1
What's the value of b?

vs objects...

let a = { name: 'gabe' }
b = a
a.country = 'us'
what's the value of b?

Do you see the difference?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep - I assume it has to do with how JS stores them in memory - when b is set to an object, it's a reference to that object, not a new object with the same details. So whenever a property of 'a' changes, 'b' will 'change' as well (because they're both just pointing to the same object). But when a = 4 and b = a, it's setting b equal to a value of 4 (not pointing to an object). So changing the value of 'a' after that doesn't change the value of 'b'.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So in the objects example, both a and b would have a value of

{
name: 'gabe',
country: 'us'
}

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@grod220
Copy link

grod220 commented Jul 28, 2019

Don't merge this to FooCoding repo though ;)

Removed console.log statement

Co-Authored-By: Gabe Rodriguez <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants