单项选择题

function f(v){ return v > this.age;}let person = {name: 'John', age: 20};[10, 12, 26, 15].find(f, person);
上面表达式值是()

A.10
B.12
C.26
D.15