Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

length プロパティは、文字列の文字数を表します。

構文

str.length

説明

このプロパティは、文字列内のコード単位の数を返します。UTF-16(JavaScript によって使われるフォーマット)は、基本的な文字を表すためには 1 つの 16 ビットを使用しますが、一般的に使用されない文字を表すために 2 つの 16 ビットを使用する場合があるので、実際の文字数と一致していない可能性があります。

空の文字列の場合、length は 0 になります。

静的プロパティ String.length は 1 を返します。

基本的な使用法

var x = 'Mozilla';
var empty = '';

console.log( 'Mozilla の文字数:' + x.length + ' 文字' );   // 7 になる
console.log( '空文字の文字数:' + empty.length + ' 文字' );  // 0 になる

仕様書

仕様書 ステータス コメント
ECMAScript 1st Edition (ECMA-262) 標準 最初の定義。JavaScript 1.0 で実装。
ECMAScript 5.1 (ECMA-262)
String.prototype.length の定義
標準  
ECMAScript 2015 (6th Edition, ECMA-262)
String.prototype.length の定義
標準  
ECMAScript 2017 Draft (ECMA-262)
String.prototype.length の定義
ドラフト  

ブラウザとの互換性

機能 Chrome Firefox (Gecko) Internet Explorer Opera Safari
サポート (有) (有) (有) (有) (有)
機能 Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
サポート (有) (有) (有) (有) (有) (有)

関連情報

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: YuichiNukiyama, ssw, teoli, ethertank, Mgjbot, Potappo
 最終更新者: YuichiNukiyama,