Answers for "[].map in reaqct js"

19

map function in react

function NameList() {
	const names = ['Bruce', 'Clark', 'Diana']
    return (
    	<div>
      {names.map(name => <h2>{name}</h2>)}
      	</div>
    )
}
Posted by: Guest on October-15-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language