diff options
Diffstat (limited to 'files/ko/web/javascript/reference/global_objects/string')
-rw-r--r-- | files/ko/web/javascript/reference/global_objects/string/lastindexof/index.html | 8 | ||||
-rw-r--r-- | files/ko/web/javascript/reference/global_objects/string/slice/index.html | 12 |
2 files changed, 10 insertions, 10 deletions
diff --git a/files/ko/web/javascript/reference/global_objects/string/lastindexof/index.html b/files/ko/web/javascript/reference/global_objects/string/lastindexof/index.html index d2244feee5..90aeaf3af0 100644 --- a/files/ko/web/javascript/reference/global_objects/string/lastindexof/index.html +++ b/files/ko/web/javascript/reference/global_objects/string/lastindexof/index.html @@ -19,7 +19,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/String/lastIndexOf <h2 id="구문">구문</h2> -<pre class="syntaxbox notranslate"><var>str</var>.lastIndexOf(<var>searchValue</var>[, <var>fromIndex</var>])</pre> +<pre class="syntaxbox "><var>str</var>.lastIndexOf(<var>searchValue</var>[, <var>fromIndex</var>])</pre> <h3 id="매개변수">매개변수</h3> @@ -38,7 +38,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/String/lastIndexOf <p>문자열의 문자는 왼쪽에서 오른쪽으로 인덱스를 매깁니다. 첫 번째 문자의 인덱스는 <code>0</code>이며, 마지막 문자의 인덱스는 <code>str.length -1</code>입니다.</p> -<pre class="brush: js notranslate">'canal'.lastIndexOf('a'); // 3 반환 +<pre class="brush: js ">'canal'.lastIndexOf('a'); // 3 반환 'canal'.lastIndexOf('a', 2); // 1 반환 'canal'.lastIndexOf('a', 0); // -1 반환 'canal'.lastIndexOf('x'); // -1 반환 @@ -56,7 +56,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/String/lastIndexOf <p><code>lastIndexOf()</code> 메서드는 대소문자를 구분합니다. 예를 들어, 아래 예제는 <code>-1</code>을 반환합니다.</p> -<pre class="brush: js notranslate">'Blue Whale, Killer Whale'.lastIndexOf('blue'); // -1 반환 +<pre class="brush: js ">'Blue Whale, Killer Whale'.lastIndexOf('blue'); // -1 반환 </pre> <h2 id="예제">예제</h2> @@ -65,7 +65,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/String/lastIndexOf <p>아래 예제는 문자열 <code>"Brave new world"</code> 내에서 특정 값의 위치를 확인하기 위해 {{jsxref("String.prototype.indexOf()", "indexOf()")}}와 <code>lastIndexOf()</code>를 사용합니다.</p> -<pre class="brush: js notranslate">let anyString = 'Brave new world'; +<pre class="brush: js ">let anyString = 'Brave new world'; console.log('시작점으로부터 처음 만나는 w의 위치는 ' + anyString.indexOf('w')); // logs 8 diff --git a/files/ko/web/javascript/reference/global_objects/string/slice/index.html b/files/ko/web/javascript/reference/global_objects/string/slice/index.html index 3bd23ace3b..6c0c54a50b 100644 --- a/files/ko/web/javascript/reference/global_objects/string/slice/index.html +++ b/files/ko/web/javascript/reference/global_objects/string/slice/index.html @@ -16,7 +16,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/String/slice <h2 id="문법">문법</h2> -<pre class="syntaxbox notranslate"><code><var>str</var>.slice(<var>beginIndex</var>[, <var>endIndex</var>])</code></pre> +<pre class="syntaxbox "><code><var>str</var>.slice(<var>beginIndex</var>[, <var>endIndex</var>])</code></pre> <h3 id="매개변수">매개변수</h3> @@ -47,7 +47,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/String/slice <p>아래 예시는 새 문자열을 생성하기 위해 <code>slice()</code>를 사용합니다.</p> -<pre class="brush: js notranslate">var str1 = 'The morning is upon us.', // the length of str1 is 23. +<pre class="brush: js ">var str1 = 'The morning is upon us.', // the length of str1 is 23. str2 = str1.slice(1, 8), str3 = str1.slice(4, -2), str4 = str1.slice(12), @@ -62,7 +62,7 @@ console.log(str5); // OUTPUT: "" <p>아래 예시는 <code>slice()</code>에 음수 인덱스를 사용합니다.</p> -<pre class="brush: js notranslate">var str = 'The morning is upon us.'; +<pre class="brush: js ">var str = 'The morning is upon us.'; str.slice(-3); // returns 'us.' str.slice(-3, -1); // returns 'us' str.slice(0, -1); // returns 'The morning is upon us' @@ -70,16 +70,16 @@ str.slice(0, -1); // returns 'The morning is upon us' <p>아래의 예시는 시작 인덱스를 찾기 위해 문자열의 끝에서부터 역방향으로 <code>11</code>개를 세고 끝 인덱스를 찾기 위해 문자열의 시작에서부터 정방향으로 <code>16</code>개를 셉니다.</p> -<pre class="brush: js notranslate"><code>console.log(str.slice(-11, 16)) // => "is u";</code></pre> +<pre class="brush: js "><code>console.log(str.slice(-11, 16)) // => "is u";</code></pre> <p>아래에서는 시작 인덱스를 찾기 위해 문자열의 처음부터 정방향으로 <code>11</code>개를 세고 끝 인덱스를 찾기 위해 끝에서부터 <code>7</code>개를 셉니다.</p> -<pre class="brush: js notranslate"><code>console.log(str.slice(11, -7)) // => "is u";</code> +<pre class="brush: js "><code>console.log(str.slice(11, -7)) // => "is u";</code> </pre> <p>이 인수는 끝에서부터 5로 역순으로 계산하여 시작 인덱스를 찾은 다음 끝에서부터 1을 거쳐 끝 인덱스를 찾습니다.</p> -<pre class="brush: js notranslate"><code>console.log(str.slice(-5, -1)) // => "n us";</code> +<pre class="brush: js "><code>console.log(str.slice(-5, -1)) // => "n us";</code> </pre> <h2 id="Specifications">Specifications</h2> |