I load a json file to a javascript object whith jquery. I get an array object (each row is a json object).
Currently, I display javascript object content to a html table with a for on each row of the obect. Is it possible to directly filter my javascript array object depending on the columns conditions and not with a for command again? Thanks a lot. Theo.
probably this can help you with little change
const result = words.filter(word => word.length > 6);
2.1m questions
2.1m answers
60 comments
57.0k users