Blogger Information
Blog 20
fans 1
comment 0
visits 17585
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
JS里 in_array() 的封装.
xosing的博客
Original
502 people have browsed it
  1. var arr = ['a','b','c'];
  2. console.log(in_array('b',arr)); // true
  3. function in_array(search,array){
  4. for(var i in array){
  5. if(array[i]==search){
  6. return true;
  7. }
  8. }
  9. return false;
  10. }
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post