Nested function in Typescript | Thiru Academy

preview_player
Показать описание
In this video we have discussed about how to use nested functions in TYpescript.

Рекомендации по теме
Комментарии
Автор

what is the difference between doing by using lambda expression an declaring the reserved word function? like
fun1 {
// code here
function fun2() { console.log('Hi') };
fun2.call(this);
}

mckokax