I have an array of objects. I want to add a class for all the objects in the array. I tried to use classNameand classList but it isn't worging. It shows me: Property 'classList' does not exist on type '{ question: string; answer1: string; answer2: string; answer3: string; answer4: string; }'.ts(2339)
How can I add this class?
JavaScript:
const questions = [];
questions[0] = {
question: 'מהי מסילת הרכבת הארוכה בעולם?',
answer1: 'הכחולה',
answer2: 'הטרנס-סיבירית',
answer3: 'סובבת הקרחון',
answer4: 'האוריינט אקספרס'
};
questions[1] = {
question: 'מגלודון הוא מין פרה היסטורי של...',
answer1: 'דינוזאור',
answer2: 'כריש',
answer3: 'אדם קדמון',
answer4: 'כלב'
};
questions[2] = {
question: 'מהי פיתקיונופוביה?',
answer1: 'פחד מתיקים',
answer2: 'פחד מפחדים',
answer3: 'פחד ממדבקות',
answer4: 'פחד מפתקים'
};
for(let i = 0; i < questions.length; i++) {
questions[i].classList.add('hide');
}
How can I add this class?