Showing 6 of 23 results
functionalprogramming functors
· 1 min readUnderstanding functors as a design pattern for safely manipulating wrapped values in functional programming
#declarative#Pure functions#Inmutable#currying
functionaltransducers
· 1 min readExploring transducers in functional programming for efficient data transformation pipelines without creating intermediate values
#declarative#Pure functions#Inmutable#currying#functors#transducers
design patternstesting prototype inheritance
· 1 min readExploring prototype inheritance in JavaScript using the call method to inherit properties and methods between objects and functions
#design patterns#prototype#inheritance
design patternsMixins
· 1 min readUnderstanding mixins in JavaScript as a solution for multi-inheritance, including delegation, concatenative, and functional inheritance patterns
#design patterns#mixins#functional mixins#inherence
javascriptGlobal variables are bad
· 1 min readExploring the dangers of global variables in JavaScript, including scope pollution, concurrency issues, and best practices for variable declaration
#javascript#globals
javascriptfunctionalstatement branching Vs micro-branching
· 1 min readComparing traditional statement branching with micro-branching techniques in JavaScript for more maintainable and functional code
#statement brnaching#micro-branching strategies