How to trim the array if length is > 5
My JSON is:
{ \"name\": \"aaa\" \"files\": [ { \"name\": \"A\",
You can use slice for that.
let trimmed = data.titles.slice(0, 5);