Computer Science, asked by manojpangi, 4 months ago

22. What is the output of the code?
var c = ["A", "Y", "C", "Z");
console.log(Array.isArray(c))​

Answers

Answered by Kirihata
1

Answer:

true

Explanation:

Answered by puneetdevman
0

Answer:

Details given below.

Explanation:

// Output ['A', 'Y', 'C', 'Z']

basically it will be on the basis of the indexing and length of the array

Similar questions