diff options
author | EUNHEE JU <charmjeh@gmail.com> | 2021-10-14 21:06:04 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-14 21:06:04 +0900 |
commit | 1fc3430e5fb35e8358fb23670639a3b2a8075a88 (patch) | |
tree | b3ec9824d8b446548d49fea68401a010900a1097 /files/ko/web | |
parent | df821208c608de1b7cdc6fe69ae28724ac1f01a0 (diff) | |
download | translated-content-1fc3430e5fb35e8358fb23670639a3b2a8075a88.tar.gz translated-content-1fc3430e5fb35e8358fb23670639a3b2a8075a88.tar.bz2 translated-content-1fc3430e5fb35e8358fb23670639a3b2a8075a88.zip |
edit toString() to fix syntax of content (#2731)
* edit toString() to fix syntax of content
* edit toString() - append code tag
Diffstat (limited to 'files/ko/web')
-rw-r--r-- | files/ko/web/javascript/reference/global_objects/object/tostring/index.html | 38 |
1 files changed, 18 insertions, 20 deletions
diff --git a/files/ko/web/javascript/reference/global_objects/object/tostring/index.html b/files/ko/web/javascript/reference/global_objects/object/tostring/index.html index 4ae67eb2b7..299b269117 100644 --- a/files/ko/web/javascript/reference/global_objects/object/tostring/index.html +++ b/files/ko/web/javascript/reference/global_objects/object/tostring/index.html @@ -37,32 +37,30 @@ o.toString(); // returns [object Object] <h2 id="매개변수">매개변수</h2> -숫자 및 BigInts의 경우 `toString()`은 선택적으로 `기수(radix)`를 매개변수로 취합니다. -기수의 값은 최소 2부터 36까지입니다. +<p>숫자 및 BigInts의 경우 <code>toString()</code>은 선택적으로 기수(radix)를 매개변수로 취합니다. 기수의 값은 최소 2부터 36까지입니다.</p> -`기수`를 이용함으로써 10진수를 (1, 2, 3, 4, 5...) 다른 진수로 변환할 수 있습니다. 아래는 10진수를 2진수로 변환하는 예제입니다. +<p><code>기수</code>를 이용함으로써 10진수를 (1, 2, 3, 4, 5...) 다른 진수로 변환할 수 있습니다. 아래는 10진수를 2진수로 변환하는 예제입니다.</p> -```js -let baseTenInt = 10; -console.log(baseTenInt.toString(2)); -// "1010"이 출력됩니다 -``` - -big integers도 이와 같습니다 +<pre class="brush: js">let baseTenInt = 10; + console.log(baseTenInt.toString(2)); + // "1010"이 출력됩니다 +</pre> -```js -let bigNum = BigInt(20); -console.log(bigNum.toString(2)); -// "10100"이 출력됩니다 -``` +<p>big integers도 이와 같습니다</p> -몇가지 일반적인 기수들은 아래와 같습니다 +<pre class="brush: js">let bigNum = BigInt(20); + console.log(bigNum.toString(2)); + // "10100"이 출력됩니다 +</pre> -- 2 : [2진법](https://ko.wikipedia.org/wiki/%EC%9D%B4%EC%A7%84%EB%B2%95), -- 8 : [8진법](https://ko.wikipedia.org/wiki/%ED%8C%94%EC%A7%84%EB%B2%95), -- 10 : [10진법](https://ko.wikipedia.org/wiki/%EC%8B%AD%EC%A7%84%EB%B2%95), -- 16 : [16진법](https://ko.wikipedia.org/wiki/%EC%8B%AD%EC%9C%A1%EC%A7%84%EB%B2%95). +<p>몇 가지 일반적인 기수들은 아래와 같습니다</p> +<ul> + <li>2 : <a class="external" href="https://ko.wikipedia.org/wiki/%EC%9D%B4%EC%A7%84%EB%B2%95">2진법</a></li> + <li>8 : <a class="external" href="https://ko.wikipedia.org/wiki/%ED%8C%94%EC%A7%84%EB%B2%95">8진법</a></li> + <li>10 : <a class="external" href="https://ko.wikipedia.org/wiki/%EC%8B%AD%EC%A7%84%EB%B2%95">10진법</a></li> + <li>16 : <a class="external" href="https://ko.wikipedia.org/wiki/%EC%8B%AD%EC%9C%A1%EC%A7%84%EB%B2%95">16진법</a></li> +</ul> <h2 id="Examples">Examples</h2> |