Javascript – Perforrm map on a number instead of array
const emptyRow = 3; How can I map on this if it's a number and not an array? something like: emptyRow.map(el => { return ( <div>place items here</div> ) }) The purpose to this is that I would like to…