--- title: String.length slug: Web/JavaScript/Reference/Global_Objects/String/length tags: - JavaScript - Property - Prototype - Reference - String translation_of: Web/JavaScript/Reference/Global_Objects/String/length ---
length
속성은 UTF-16 코드 유닛을 기준으로 문자열의 길이를 나타냅니다.
length
속성은 문자열 안의 코드 유닛 수를 반환합니다. JavaScript가 사용하는 문자열 형식인 {{interwiki("wikipedia", "UTF-16")}}은 대부분의 일반적인 문자를 표현하기 위해 하나의 16비트 코드 유닛을 사용합니다. 반면, 덜 쓰이는 문자를 표현하기 위해 2개의 코드 유닛을 사용해야 할 때도 있으므로 문자열 내에 있는 문자들의 실제 총 숫자가 length
속성이 반환하는 숫자와 일치하지 않을 수 있습니다.
ECMAScript 2016 7판은 최대 길이를 2^53 - 1
로 설정했습니다. 이전엔 명시된 최대 길이가 없었습니다.
빈 문자열은 length
가 0입니다.
정적 속성 String.length
는 1을 반환합니다.
var x = 'Mozilla'; var empty = ''; console.log('Mozilla는 코드 유닛 ' + x.length + '개의 길이입니다.'); /* "Mozilla는 코드 유닛 7개의 길이입니다." */ console.log('빈 문자열은 ' + empty.length + '의 길이를 가집니다.'); /* "빈 문자열은 0의 길이를 가집니다." */
Specification | Status | Comment |
---|---|---|
{{SpecName('ES1')}} | {{Spec2('ES1')}} | Initial definition. Implemented in JavaScript 1.0. |
{{SpecName('ES5.1', '#sec-15.5.5.1', 'String.prototype.length')}} | {{Spec2('ES5.1')}} | |
{{SpecName('ES6', '#sec-properties-of-string-instances-length', 'String.prototype.length')}} | {{Spec2('ES6')}} | |
{{SpecName('ESDraft', '#sec-properties-of-string-instances-length', 'String.prototype.length')}} | {{Spec2('ESDraft')}} |