Posts tagged “composition”
9 posts found
The Power of Functions Returning Other Functions in JavaScript
June 8, 2020
This post will go over some examples of working with functions and composing them together to create more functions to do more things
5 Critical Tips for Composing Event Handler Functions in React
May 17, 2020
We will be going over 5 critical tips to compose event handlers in react. This post will not cover everything that is possible, but it will cover important ways to compose event handlers that every react developer should know, minimally
Composing Functions in JavaScript
March 12, 2020
In this article, we will go over some examples of composing in JavaScript and talk about important concepts that always need to be kept in mind when composing
Decorators in JavaScript
February 23, 2020
We'll be taking a look at some examples of decorators in JavaScript and create our own decorator to see how it can be useful to our code
6 Practices in React You Might Find Effective
February 19, 2020
In this article, we'll be going through 6 Practices in React You Might Find to be Effective
Write More Robust JavaScript: 7 Best Practices
January 15, 2020
Here are seven code practices in JavaScript that will help you write stronger code
The Power of the Composite Design Pattern in JavaScript
December 7, 2019
In this post, we will be going over the Composite Design Pattern in JavaScript
5 Anti-Patterns in JavaScript to Avoid When Working With Collections
December 5, 2019
This article will go over 5 anti-patterns to avoid when working with collections in JavaScript
Recursion Inside JavaScript
September 27, 2019
If you're new to recursion, this article will hopefully help you understand the concept a little more clearly.