當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript Function toString()用法及代碼示例


JavaScript Function toString() 方法以字符串形式返回函數的源代碼。

用法:

func.toString()

在這裏,func 是一個函數。

參數:

toString() 方法不接受任何參數。

返回:

  • 返回表示函數源代碼的字符串。

示例:使用 toString()

function f() {}
console.log(f.toString()); // function f() {}

function sum(a, b) {
  return a + b;
}
console.log(sum.toString());
// function sum(a, b) {
//  return a + b;
// }

// built-in functions
console.log(console.log); // log() { [native code] }

console.log(Function.prototype.toString); // toString() { [native code] }

console.log((() => "Hello World!").toString()); // () => "Hello World!"

輸出

function f() {}
function sum(a, b) {
  return a + b;
}
log() { [native code] }
toString() { [native code] }
() => "Hello World!"

相關用法


注:本文由純淨天空篩選整理自 JavaScript Function toString()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。