creer array jquery code example
Example: jquery create array
var colors = ['red','blue','green'];
/*// OUTPUT
---------------------------*/
console.log(colors[1]); // Outputs 'blue'
var colors = ['red','blue','green'];
/*// OUTPUT
---------------------------*/
console.log(colors[1]); // Outputs 'blue'