generated at
JavaScript:Stringオブジェクト
文字列型(string) のを扱うためのラッパーオブジェクト
文字列抽出加工検索などを行うための機能提供する

js
// プリミティブの文字列は"string"型 const str = "文字列"; console.log(typeof str); // => "string" // ラッパーオブジェクトは"object"型 const stringWrapper = new String("文字列"); console.log(typeof stringWrapper); // => "object"


JavaScript