Day 15 of 50 days challenge: Today I revised some of the adv. concepts of functions in JS ( HigherOrderFunction, Callbacks, passing functions as an arguments and about IIFE and without_IIFE). Stay with me in this journey. #WorkTogether#GrowTogether#webdeveloper#50Days
Continuando com a série de Kotlin para devs Java, hoje eu publiquei o vídeo sobre tipo função, higher-order function e lambdas! Você já usou algumas dessas funcionalidades da linguagem?
#kotlin#java#lambda#function#higherOrderFunction
Hoje publiquei a continuação da implementação da tela de autenticação com o Jetpack Compose. A ideia dele é mostrar como personalizamos os componentes visuais do Modifier! (similar ao CSS) 🧵
#android#jetpackcompose#kotlin#modifier#higherOrderFunction
JavaScript Micro Tutorial: #higherorderfunction A higher order function is a function that takes a function as an input parameter and/or returns a function as an output.
Some built in higher order function in #JavaScript are setTimeout(), Array map(), reduce() etc.
In case you've never seen a SQL Server higher order function:
CREATE FUNCTION dbo.Factorial_recur3(@N BIGINT)
RETURNS BIGINT AS BEGIN
RETURN (IIF(@N<=1,1,@N*dbo.Factorial_recur3(@N-1))); END;
GO
#fp#function#functional#higherorderfunction
meine Scala-Programmierung, bzgl. HigherOrderFunction-Implementierung und -Einsatz, beruht momentan immer noch lediglich darauf, intelligent genug dazu zu sein, in die richtige Richtung zu raten