This repository was archived by the owner on Jan 14, 2024. It is now read-only.
London9_Inna_Poliakova_JS-Week-3 - #195
Open
Innapoliakova wants to merge 2 commits into
Open
Conversation
|
Awesome :) |
Abdirizak-Mohamed
approved these changes
Jan 5, 2023
| let message = "Hello"; | ||
| } | ||
| // undefined - because function not called | ||
|
|
There was a problem hiding this comment.
Here we have defined a function, but we have not done anything with it yet
| let hello = sayHello(); | ||
| console.log(hello); | ||
|
|
||
| // undefined - because function not declared |
There was a problem hiding this comment.
Here it is undefined because if we look back at line 19 it doesnt look like the function has returned anything yet.
| let arr = [1,2,3]; | ||
| console.log(arr[3]); | ||
|
|
||
| // undefind - becouse array isn't conclude element with index 3 |
| } | ||
| console.log(result.join()); | ||
| } | ||
|
|
There was a problem hiding this comment.
Awesome! 1 Caveat would be does the question ask for the first n? If so do we we want to include n itself. If we do how would we update the code to do so.
| return BIRTHDAYS[i]; | ||
| } | ||
| i ++ | ||
| } |
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.
No description provided.