Es6-string-length

提供:Dev Guides
2020年6月23日 (火) 08:04時点におけるMaintenance script (トーク | 投稿記録)による版 (Imported from text file)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先:案内検索

ES6-文字列プロパティの長さ

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

構文

string.length

例:文字列コンストラクタープロパティ

var uname = new String("Hello World")
console.log(uname)
console.log("Length "+uname.length)
//returns the total number of characters
//including whitespace

出力

Hello World
Length 11