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

#1722 random-min-max 과제 번역 6, 8번째 줄#1731

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
librarian00 wants to merge2 commits intojavascript-tutorial:master
base:master
Choose a base branch
Loading
fromlibrarian00:1722-random-min-max-solution-6-8
Open
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions1-js/05-data-types/02-number/8-random-min-max/solution.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -3,9 +3,9 @@ We need to "map" all values from the interval 0..1 into values from `min` to `ma
That can be done in two stages:

1. If we multiply a random number from 0..1 by `max-min`, then the interval of possible values increases `0..1` to `0..max-min`.
2.Now if we add`min`, the possible interval becomes from`min` to`max`.
2.이제`min`을 더하면`min`에서`max`가 됩니다.

Choose a reason for hiding this comment

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

콤마 이후의 문장(the possible interval becomes frommintomax.) 번역이 누락되어 있습니다.

Choose a reason for hiding this comment

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

여전히 이부분이 번역이 잘 안되어있어요.
원문이 잘 반영되어있는지 위, 아래 글과 연관지어서 확인부탁드립니다.


The function:
완성된 함수는 다음과 같습니다.

```js run
function random(min, max) {
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp