Which of the following function of Array object applies a function simultaneously against two values of the array (from right-to-left) as to reduce it to a single value?
pop()
reduce()
push()
reduceRight()
Correct Answer : D
In this example, what would the VALUE of employee.functions[1] be?
{ "employee" : { "type" : "Director", "functions" : ['sales', 'marketing'] } }