<script>
Array.prototype.search=function(str) {
var l=str.length,i,l1=this.length,j;
for(i=0;i<l;i++)
{
for(j=0;j<l1;j++)
{
if(str[i]==this[j])
break;
}
if(j==l1){
document.write(str[i]+" ");
}
}
}
var a=[3,1,2,7],b=[1,2,3,4,5,6];
a.search(b);
b.search(a);
</script>
(not num)+num=-1 可以推出:
not num=-(num+1)
posted on 2006-10-30 16:34
汪杰 阅读(375)
评论(0) 编辑 收藏 引用