const cloneSymbols = […gameSymbols, …gameSymbols];
const boardCards = shuffleArray(cloneSymbols);
for (let i = 0; i < boardCards.length; i++) {
$(‘board’).append($(“
}
Above are my codes. boardCards are strings.
Currently facing the problem of not being able to generate the chain of HTMLs to append to the ‘.board’, with the string from the boardCards array;
Appreciate if anyone could advise and/or share new methods that can help. Many thanks!