Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Improve the text#3369

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
detinsley1s wants to merge2 commits intojavascript-tutorial:master
base:master
Choose a base branch
Loading
fromdetinsley1s:patch-2

Conversation

detinsley1s
Copy link
Contributor

I made numerous additions and edits to make the page read more fluently. I also fixed a misspelling of "parentheses."

I made numerous additions and edits to make the page read more fluently. I also fixed a misspelling of "parentheses."
@@ -160,9 +160,9 @@ function sayHi() {
sayHi();
```

People also call such behavior "hoisting" (raising), because all `var` are "hoisted" (raised) to the top of the function.
People also call such behavior "hoisting" (raising), because all `var`s are "hoisted" (raised) to the top of the function.
Copy link
Contributor

Choose a reason for hiding this comment

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

Maybe:

People also call such behavior "hoisting" (raising), because allvar declarations are "hoisted" (raised) to the top of the function.

@@ -205,7 +205,7 @@ sayHi();

Because all `var` declarations are processed at the function start, we can reference them at any place. But variables are undefined until the assignments.

In both examples above, `alert` runs without an error, because the variable `phrase` exists. But its value is not yet assigned, so it shows `undefined`.
In both examples above, `alert` runs without an error, because the variable `phrase` exists, but its value is not yet assigned, so it shows `undefined`.
Copy link
Contributor

Choose a reason for hiding this comment

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

I think punctuation should be removed:

In both examples above,alert runs without an error because the variablephrase exists but its value is not yet assigned, so it showsundefined.

@javascript-translate-botjavascript-translate-bot added the changes requestedWaiting for changes and /done from PR author labelAug 24, 2024
@javascript-translate-bot

Please make the requested changes. After it, add a comment "/done".
Then I'll ask for a new review 👻

@detinsley1s
Copy link
ContributorAuthor

/done

@javascript-translate-botjavascript-translate-bot added review neededReview needed, please approve or request changes and removed changes requestedWaiting for changes and /done from PR author labelsAug 25, 2024
@javascript-translate-botjavascript-translate-bot requested a review froma teamAugust 25, 2024 20:43
@javascript-translate-botjavascript-translate-bot added needs +1One more review needed and removed review neededReview needed, please approve or request changes labelsAug 25, 2024
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@shallow-beachshallow-beachshallow-beach approved these changes

@manohar-geekologixmanohar-geekologixmanohar-geekologix approved these changes

Assignees
No one assigned
Labels
needs +1One more review needed
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

4 participants
@detinsley1s@javascript-translate-bot@shallow-beach@manohar-geekologix

[8]ページ先頭

©2009-2025 Movatter.jp