Jekyll server with Ruby 2.7.0 gives ‘warning Using the last argument as keyword parameters is deprecated’
Running Jekyll local server with Ruby 2.7.0 gives warnings as below,
Running Jekyll local server with Ruby 2.7.0 gives warnings as below,
The bubble sort makes multiple passes through a list. It compares adjacent items and exchanges those that are out of order. Each pass through the list places...
An IIFE or Immediately Invoked Function Expression is a function that is gonna get invoked or executed after its creation or declaration. The syntax for crea...
Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope before code execution.
A common need is to execute two or more asynchronous operations back to back, where each subsequent operation starts when the previous operation succeeds, wi...
AMD (Asynchronous Module Definition) The AMD module format itself is a proposal for defining modules where both the module and dependencies can be asynchron...
It converts Object to boolean. If it was falsey (e.g. 0, null, undefined, etc.), it will be false, otherwise, true.
React.PureComponent is similar to React.Component. The difference between them is that React.Component doesn’t implement shouldComponentUpdate(), but React.P...
Currying is a technique of evaluating function with multiple arguments, into sequence of function with single argument. That is, when we turn a function call...