All Posts
Explore the complete collection of articles about technology, development and design.
Showing 4 of 4 results
design patternsExplicit Conditional Rendering
· 1 min readA functional and maintainable pattern for conditionally displaying UI fragments without overusing logical or ternary operators.
#Astro#Functional UI#JSX#Components#patterns
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
design patternsIIFE
· 1 min readUnderstanding Immediately Invoked Function Expressions (IIFE) in JavaScript and their use in preventing global scope pollution
#design patterns#IIFE