Pure Functions Return Value

preview_player
Показать описание
I explain what a pure function IS NOT: something that doesn’t return a value.

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

Thanks for these functional programming videos. I like the concepts of fp, but it's still difficult for me to grasp. I've been trying to pick up Elm in my free time, but it's coming very slowly.

NoahNobody
Автор

I feel your teaching better than Eric Elliott

AjinkyaBorade
Автор

pure function:
function getName(name){
return name;//name is a free variable
}// also function containing a free variable is also known as closure

AjinkyaBorade