TypeScript匿名函数

时间:2013-12-20 09:20:06

标签: javascript typescript anonymous-function

这个JavaScript的TypeScript等价物是什么?

(function() { 
    /* code here */ 
})();

我试过这个

() => {
    /* code here */
}

但这会产生

(function() {
    /* code here */
});

我需要在末尾添加额外的括号来执行匿名函数。

1 个答案:

答案 0 :(得分:20)

(() => {
    /* code here */
})();

或仅使用JavaScript(同样有效的TypeScript)

(function() { 
    /* code here */ 
})();

...取决于您是否要使用胖箭头捕获this

Playground