function array_key_exists ( key, search ) { // Checks if the given key or index exists in the array
//
// + original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
// input sanitation
if( !search || (search.constructor !== Array && search.constructor !== Object) ){
return false;
}
return search[key] !== undefined;
}
Roksa lodz retkinia
The array_key_exists function in JavaScript checks if the given key or index exists in the array or object, returning true if the Build Now GG key is set in the array or object, and false otherwise.
Отправить комментарий
Приветствуются комментарии:Для остальных вопросов и обсуждений есть форум.