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.

Function.prototype.toString()

概要

関数のソースコードを表す文字列を返します。

構文

function.toString(indentation)

引数

indentation 廃止 Gecko 17
ソースコードを表す文字列をインデントする空白文字の数です。indentation の値が -1 以下である場合は、ほとんどの不必要な空白文字が取り除かれます。

説明

Function オブジェクトは、Object から継承する toString メソッドをオーバーライドします。つまり、Object.prototype.toString を継承しません。Function オブジェクトについて、toString メソッドは関数宣言を表現するオブジェクトを表す文字列を返します。よって、toString は関数を逆コンパイルして function キーワード、引数の一覧、中かっこ、関数本体のソースコードを含む文字列を返します。

Function が文字列値として表現されるとき、JavaScript は自動的に toString メソッドを呼び出します。例えば、関数が文字列と連結されるときです。

関連情報

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

タグ: 
 このページの貢献者: teoli, ethertank, yyss
 最終更新者: teoli,