博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Javascript 有用参考函数
阅读量:4946 次
发布时间:2019-06-11

本文共 1572 字,大约阅读时间需要 5 分钟。

 
/*
Append the names of the enumerable properties of object o to the array a, and return a.
If a is omitted or null, create and return a new array
*/
function
copyPropertyNamesToArray(o,
/*
optional
*/
a) {
if
(
!
a) a
=
[];
//
/If undefined or null , use a blank array
for
(
var
perperty
in
o) a.push(perperty)
return
;
}
/*
arguments 类似 Math.max()
*/
function
max(
/*
.....
*/
) {
var
m
=
Number.NEGATIVE_INFINITY;
//
//Loop through all the arguments , looking for, and
//
// remembering, the biggest
for
(
var
i
=
0
; i
<
arguments.length; i
++
)
if
(arguments[i]
>
m) m
=
arguments[i];
return
m;
}
/*
判断传递给函数的参数个数是否符合要求
*/
function
check(args) {
var
actual
=
args.length;
var
expected
=
args.callee.length;
if
(actual
!=
expected) {
throw
new
Error(
"
Wrong number of arguments: expected:
"
+
expected
+
"
; actually passed
"
+
actual);
}
}
function
f(x, y, z) {
check(arguments);
return
x
+
y
+
z;
}
/*
程序员偶尔会想要编写一个通过调用来记住一个值的函数。这个值不能存储在一个局部变量中,因为调用对象不能通过调用来维持。尽量不用全局变量
*/
uniqueId
=
function
() {
if
(
!
arguments.callee.id) arguments.callee.id
=
0
;
return
arguments.callee.id
++
;
}
CuniqueId
=
(
function
() {
//
The call object of this function holds our value
var
id
=
0
;
//
this is the private persistent value
//
The outer function returns a nested function that has access
//
to the persistent value. It is the nested function we're storing
//
in the variable uniqueId above
return
function
() {
return
id
++
};
//
Return and increment
})();
//
Invoke the outer function after defining it.

转载于:https://www.cnblogs.com/jackyweb/archive/2011/06/23/2087880.html

你可能感兴趣的文章
JAVA程序猿怎么才干高速查找到学习资料?
查看>>
使用axel下载百度云文件
查看>>
Qt中图像的显示与基本操作
查看>>
详解软件工程之软件测试
查看>>
WCF(二) 使用配置文件实现WCF应用程序
查看>>
【CodeForces 803 C】Maximal GCD(GCD+思维)
查看>>
python 去掉换行符或者改为其他方式结尾的方法(end='')
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
REST构架风格介绍:状态表述转移
查看>>
struct {0}初始化
查看>>
c++ operator
查看>>
apache 添加 ssl_module
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
getQueryString
查看>>
Servlet文件上传和下载的复习
查看>>
JavaScript笔记——正则表达式
查看>>
iOS PushMebaby
查看>>
网页消息类
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>