Hi everyone! Looking for a bit of advice.
I’m currently trying to building a basic web app for displaying a small database of questions & answers.
-
The plan is to display submitted questions from customers (that have already been answered on youtube).
-
I’ve already created a JSON file contained objects for each question (inside each object is the month, question, answer and category).
-
I hope to implement 5 features to display questions: view all, view random question, view by month (dropdown box), view by category (dropdown box), and keyword search.
I’ve tried a few different methods of creating this but not really getting anywhere productive with the search/filter parts.
Does anyone have any advice as to what would be the simplest method of creating this, and how to implement the search features? (vanilla JS, ES6 preferably)
Thanks in advance
Christian