Currently I am using Angular 2.0. I have an array as follows:
var channelArray: Array = [\'one\', \'two\', \'three\'];
How ca
You can use filter too
filter
this.products = array_products.filter((x) => x.Name.includes("ABC"))