Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Benoit Asselin http://www.ab-d.fr

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

count() in JavaScript

The same function as count() in php.

Array.prototype.count = function() {
	return this.length;
};


Sample :
var v_array = [ 5, 10, 15, 20, 25];
document.writeln(v_array.count());  // 5


Source: AB-D.fr

in_array() in JavaScript

The same function as in_array() in php.

Array.prototype.in_array = function(p_val) {
	for(var i = 0, l = this.length; i < l; i++) {
		if(this[i] == p_val) {
			return true;
		}
	}
	return false;
}


Sample :
var v_array = [ 5, 10, 15, 20, 25];
document.writeln(v_array.in_array(10));  // true
document.writeln(v_array.in_array(11));  // false


Source: PHP Manual in_array()
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS