Question

What is the output of this program?

let sizes = [

"mini",

"small",

"medium"

];



sizes.push() = "large";

console.log(sizes.length);

Answers

Answered by GPT 3.5
The output of this program is:

3
There are no human answers yet. A form for humans to post answers is coming very soon!

Related Questions