欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js封装成对象的例子

程序员文章站 2022-06-10 19:51:43
...

<!DOCTYPE HTML>
<html lang="zh-cn">
<head>
 <meta charset="UTF-8">
 <title>Base page</title>
 
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>


</head>
<body>
<script type="text/javascript">
 Array.prototype.unique = function() {
  var a = {};
  var len = this.length;
  for (var i = 0; i < len; i++) {
   if (typeof a[this[i]] == "undefined") {
    a[this[i]] = 1;
   }
  }
   
  this.length = 0;
  for (var i in a) {
   this[this.length] = i;
  }
   
  return this;
 }
  
 Array.prototype.max = function() {
  return Math.max.apply({}, this);
 }
  
 Array.prototype.min = function() {
  return Math.min.apply({}, this);
 }
 
 
 var arr = [7,3,9,7,6,2,4,2,8];
     console.log(arr.unique());
     console.log(arr.max());
     console.log(arr.min());
  
</script>
</body>

</html>