I\'m making an application where the user fills out all the information for a logo and adds it to a list where he can then add more logos or delete them.
Imagine I add a log
var tempLogo = new Array();
tempLogo[0] = logos[0]; // or the logo you have choose
// Clear the logo
logos.clear();
// Set the logos with the tempLogo value
logos = tempLogo;