JavaScript - Using prototype for Array

JavaScript - Using prototype for Array

最近工作+上課+報考+考試,忙的一整個亂七八糟,都沒有時間整理筆記。剛才看到cloudio的文

章提到了JavaScript 的prototype,最近剛好也寫了一個,就記下來了:p

我的是為了幫陣列加上remove的功能。


		{
			var i;
			var j;
			for (i = 0; i < this.length; i++)
			{
				if (this[i] == val)
				{
					for (j = i; j < this.length - 1; j++)
					{
						this[j] = this[j + 1];
					}
					this.length = this.length - 1;
				}
			}
		}
		Array.prototype.remove = array_remove;

 

DotBlogs 的標籤: