Computer Science, asked by vijay271836, 1 month ago

What happens with the following array declaration
var count = [1,,3]

Answers

Answered by vikaslovely00
6

Answer:

The omitted value taken "undefined".

Explanation:

Array is defined with a null value when no value is mentioned. If you omit a value from an array literal, the omitted element is given an undefined value.

Similar questions