This repository was archived by the owner on Apr 18, 2025. It is now read-only.
NW6 | Nazanin Saedi | JS3 | code-reading | Module-JS3 | week3#318
Open
nazaninsaedi wants to merge 10 commits intoCodeYourFuture:mainfrom
Open
NW6 | Nazanin Saedi | JS3 | code-reading | Module-JS3 | week3#318nazaninsaedi wants to merge 10 commits intoCodeYourFuture:mainfrom
nazaninsaedi wants to merge 10 commits intoCodeYourFuture:mainfrom
Conversation
NW6 | NazaninSaedi | BookLibrary-JS3 | Week-1
|
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.




Question 1
Take a look at the following code:
Explain why line 4 and line 6 output different numbers.
My answer:
Line 4 creates a new local variable x inside the function f1, which shadows the outer variable x. So, when console.log(x) executes on line 5, it refers to the local x with a value of 2. Line 7 refers to the outer variable x, which retains its original value of 1.
Question 2
Take a look at the following code:
What will be the output of this code. Explain your answer in 50 words or less.
The code output:
10
undefined
Explain for my answer :
console.log(x) inside f1() prints the value of the outer variable x, which is 10. y is defined locally within f1(), so it's not accessible outside the function, resulting in undefined.
Question 3
Take a look at the following code:
answer Q3
THE OUTPUT :
9
{ x: 10 }
MY EXPLAIN
In the first case, x is a primitive (number), so passing it to f1() doesn't change its value. In the second case, y is an object, and since objects are passed by reference, modifying val.x inside f2() affects the original object y.