What is the output of this program?
var flavors = [];
flavors.push('lemon');
flavors.push('lime');
special = flavors[1];
console.log(special);
1 answer
The output of this program is "lime".
var flavors = [];
flavors.push('lemon');
flavors.push('lime');
special = flavors[1];
console.log(special);
1 answer