How to Use Unicode While Array Map in JSX REACT? – Reactjs
const data = ["1","2","3","4","5","6"] // example data const unicode = • // This is the unicode that I want to put in the jsx <div> { data.map((item)=>( item + <span>unicode</span> )) } </div> But doesn't work it displays [object Object]…