Stop using Array.map() everywhere ๐ฅต
Most of the time I used to see the snippet like this ๐
const fruits = ["apple", "orange", "cherry"];
let text = "";
document.getElementById("main").innerHTML = text;
fruits.map(i => text += i );
In the above snippet, we are adding fruits text to th...
suprabhasupi.hashnode.dev2 min read
Favourite Jome
Software Engineer @bug0
Valid point Suprabha Supi