grepper add code answer

JavaScript
// Simply press "a" on your keyboard after searching your question! :)Press 'a'ng if cart icon got items only show numbers

<ion-icon slot="end" (click)="openCart()" #cart class="cart_icons" name="cart-outline"></ion-icon>
        <div *ngIf="(cartItemCount | async) >= 1 ">
          <span>{{ cartItemCount | async }}</span>
        </div>
      </div>ngFor filter products based on categories


*ngFor="let item of filteredvalues"    at html


at TS

//filter products by category id 
    this.apiService.getList().subscribe(response => {
      this.productsData = response;
      this.filteredvalues = this.productsData.filter(res => 
        res.category_id == this.id);
      console.log('get all products', this.filteredvalues);
    });


./john <hash file> --format=NT --wordlist=<location wordlist>
Source

Also in JavaScript: