I'm currently doing the following:
_.map(_.shuffle(myMapping), (item, index) => (
<p>{item.title}</p>
))
How can I essentially duplicate myMapping so that myMapping = myMapping + myMapping?
I'm not trying to remove duplicate, I was the copy to be 2x in length.