I think you are looking for filter ,
comments = []; commentspart = []; private loadPartComments(id){ this.commentspart = this.comments.filter(element => { return element.postId == id; }); }
it will provide you with a filtered array of comments based on id.
Hope this helps!
source share