The output of this program is:
3
What is the output of this program?
let sizes = [
"mini",
"small",
"medium"
];
sizes.push() = "large";
console.log(sizes.length);
1 answer
let sizes = [
"mini",
"small",
"medium"
];
sizes.push() = "large";
console.log(sizes.length);
1 answer