标签:UNC inf 个数 方式 函数名 ext string OLE 内容
demo:
function s1(){
}
s1.name()//函数的名字
demo:
var a = function (){
}
a.name()//函数的名字 a
demo:
var a = function text(){
}
a.name()//name属性为text
length属性返回的是函数预期传入的个数,即函数所在形参列表的长度个数。
demo:
function stu_info(name,age,sex){
}
console.log(stu_info.length)//输出结果为3即形参列表的长度
函数的toString方法返回一个字符串,内容是函数的源码也就是函数体本身。
demo:
~~~
function fn1(a,b){
console.log("hello,world!");
}
console.log(fn1.toString())
标签:UNC inf 个数 方式 函数名 ext string OLE 内容
原文地址:https://www.cnblogs.com/wangjiahui/p/10833059.html