function in_array(array, id) {
for(var i=0; i<array.length; i++) {
if (array[i]==id) return true;
}
return false;
}
Hope you like this post, probably short but will help a lot.
You should know your purpose in life, make a difference, and believe in yourself. Always think positive, take the risk and move forward. Do that, then before you know it, you're already the man you always wanted. Cheers!!
function in_array(array, id) {
for(var i=0; i<array.length; i++) {
if (array[i]==id) return true;
}
return false;
}
No comments:
Post a Comment