单项选择题

var b =90;var result =(function (){var b =1;return function (){return this.b}})();console.log(result())打印结果是?()

A.90
B.1
C.报错
D.undefined