Given the array [3, 1, 4, 1, 5], which number is a duplicate?
What is the result of reversing the string 'array'?
Which JavaScript method returns the first index at which a given element can be found in an array?
What does 'hello,world'.split(',') return?
If arr = ['a', 'b', 'c'], what does arr.join('-') return?
What is the output of 'MiXeD'.toLowerCase()?
Which array method removes the last element from an array?
What is the value of ['apple', 'banana', 'orange'].length?
What does ['2024', 'quiz'].toString() return?
What does 'banana'.includes('nan') return?