Question:What will produce the output of the following code?var computer=[“Dell”,”Gateway”,”Apple”,”IBM”,”HP”]; alert(computer.slice(2,4));
var computer=[“Dell”,”Gateway”,”Apple”,”IBM”,”HP”]; alert(computer.slice(2,4));
A Apple, IBM B Dell, Gateway C Gateway, IBM D Gateway, HP
+ AnswerA
+ Report