We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e1d641 commit 6f0bc0dCopy full SHA for 6f0bc0d
1-js/05-data-types/02-number/8-random-min-max/solution.md
@@ -2,7 +2,7 @@ We need to "map" all values from the interval 0..1 into values from `min` to `ma
2
3
이 작업은 두 단계로 이루어집니다.
4
5
-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`.
+1. 0과 1 사이의 임의의 숫자에 `max-min`를 곱하면 가능한 값의 간격이 `0..1`에서 `0..max-min`으로 증가합니다.
6
2. Now if we add `min`, the possible interval becomes from `min` to `max`.
7
8
The function:
0 commit comments