Advertisement
Guest User

Untitled

a guest
May 20th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. let do_search = function() {
  2. // console.log("hello");
  3. for(i = 0; i < app.products.length; i++){
  4. var this_product = app.products[i];
  5. if(this_product.name.includes(app.search_string)){
  6. this_product.isHidden = false;
  7. }
  8. else{
  9. this_product.isHidden = true;
  10. }
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement