Kizspy | Question: 33
(Choose 1 answer)
In EL, assuming employeeNames is a list in Java, how can you check if it contains the name "John"?
A. ${'John' in employeeNames}
B. ${employeeNames.contains('John')}
C. ${employeeNames.indexOf('John') ne -1}
D. ${fn:contains(employeeNames, 'John')}