What is the output of _.last([1, 2, 3, 4, 5], 2)?
A). [1, 2]
B). [4, 5]
C). [5]
D). [3, 4, 5]
How can you invoke a function a specified number of times in Underscore.js?
A). _.times
B). _.invoke
C). _.repeat
D). _.cycle
How do you check if a value is an array in Underscore.js?
A). _.isObject
B). _.isArray
C). _.isArguments
D). _.isString
Which function is used to clone an object in Underscore.js?
A). _.extend
B). _.clone
C). _.map
D). _.filter
Which function retrieves the minimum value in a list using Underscore.js?
A). _.min
B). _.max
C). _.reduce
D). _.filter
What does _.keys({one: 1, two: 2, three: 3}) return?
A). [1, 2, 3]
B). ['one', 'two', 'three']
C). ['1', '2', '3']
D). [1, 2, 'three']
How do you debounce a function in Underscore.js to limit the rate at which it can fire?
A). _.throttle
B). _.debounce
C). _.delay
D). _.once
What does _.omit({name: 'Alice', age: 25, location: 'NY'}, 'age') return?
A). {name: 'Alice', location: 'NY'}
B). {age: 25}
C). {name: 'Alice', age: 25}
D). {location: 'NY'}
What does _.pluck([{a: 1}, {a: 2}, {a: 3}], 'a') return?
A). [1, 2, 3]
B). [1, 2]
C). [2, 3]
D). [3, 1]
What is the result of _.map([1, 2, 3], function(num) { return num * 3; })?
A). [1, 2, 3]
B). [3, 6, 9]
C). [2, 4, 6]
D). [3, 6, 9, 12]