_________ is a wrapped Java array, accessed from within JavaScript code.
JavaArray
JavaClass
JavaObject
JavaPackage
The _______ method of an Array object adds and/or removes elements from an array.
Reverse
Shift
Slice
Splice
Which is the correct way to write a JavaScript array?
var txt = new Array(1:"tim",2:"kim",3:"jim")
var txt = new Array:1=("tim")2=("kim")3=("jim")
var txt = new Array("tim","kim","jim")
var txt = new Array="tim","kim","jim"
In the below notation, Employee is of type { “Employee”: [ “Amy”, “Bob”, “John” ] }
Not a valid JSON string
Array
Class
Object