JavaScript
Creating Axios mock requests in Jest
How to create your own reusable axios mock request function for Jest.
javascriptjesttesting
ES6: What is the difference between Rest and Spread?
Rest Parameter [ …rest]
javascriptes6rest
ES6: Arrow Functions
javascriptes6arrow-function
Can you console.log in JSX?
TLDR: Embed the expression
reactjavascriptjsx
How to Detect a Sequence of Keystrokes in JavaScript
javascriptcodingprogramming
How to use Async Await in JavaScript
There are many ways JavaScript provides us with the ability to make it behave like an asynchronous language. One of them is with the Async-Await clause.
javascriptasyncawait
How to loop through arrays in React
reactmaploops
How (and why) you should use TypeScript with Node and Express.
typescriptnodeexpress
When should I use curly braces { } and parenthesis ( ) in React?
In the beginning of your career when learning React and ES6 JavaScript syntax, it can be confusing when to use curly braces { } and when to use parenthesis ( )
reactjavascriptes6
Module Pattern in JavaScript
JavaScript Developers need to understand Core Patterns
javascriptmodule-patterndata-hiding