LearningFuze > React-rendering-lists > Flashcards
What Array method is commonly used to create a list of React elements?
.map()
What is the best value to use as a “key” prop when rendering lists?
string value. (anything unique) EXCEPT for the index value (this is the last resort).