Google+ Tools
Make Google+ profile picture
Make Google plus banners for profile
Create and share your Google Plus profile banners.

Profile image for mrk studios maceblue on July 30, 2012

like PHP function in_array

Language
JavaScript
Tags

in_array (PHP-like)


function in_array(item,arr) {
	for (p=0;p<arr.length;p++) if (item == arr[p]) return true;
	return false;
}

Comments

blog comments powered by Disqus