I want to filter data of array whose boolean value is true.
Below image is my code:
I want to filter data of array whose boolean value is true.
Below image is my code:
You can try the following code
return this.carServices.filter(item => item.BooleanField === true);