stringObject.valueOf()メソッド

stringObject.valueOf()メソッドは、Stringオブジェクトの文字列を、プリミティブ値である文字列型の文字列として返すメソッド。

構文

stringObject.valueOf()

戻り値

文字列型の文字列。

サンプル

<script type="text/javascript">
var $numberObject = new String( '文字列' );
document.write( '$numberObject: ' );
document.write( $numberObject + '<br />' );
document.write( '$numberObjectのデータ型: ' );
document.write( typeof( $numberObject ) + '<br />' );
document.write( '$numberObject.valueOf(): ' );
document.write( $numberObject.valueOf() + '<br />' );
document.write( '$numberObject.valueOf()のデータ型: ' );
document.write( typeof( $numberObject.valueOf() ) + '<br />' );
</script>

↓↓↓出力結果↓↓↓

スポンサード リンク

カテゴリー: JavaScript, Stringオブジェクト, メソッド, リファレンス, 取得, 組み込みオブジェクト タグ: パーマリンク