单项选择题

class Foo { constructor() { return Object.create(null); }}Foo()//执行结果是什么?()

A.Object
B.TypeError:Class constructor Foo cannot be invoked without’new’
C.Function
D.String