Author Archives: Rahul Kumar

Currying in JavaScript

Currying is a task that takes one argument at a time and brings back a new task awaiting the next argument. It is a modification of functions that translate function from callable as f (a, b, c) to f (a)(b)(c). In this article, we will look at what currying is in Javascript, why you should Continue Reading »

JAVASCRIPT XML

JSX – JavaScript XML

JSX stands for JavaScript Extension or JavaScript XML. JSX is the HTML-like syntax that is used by React components to render in the browser. “React doesn’t require using JSX, but most people find it helpful as a visual aid when working with UI inside the JavaScript code. It also allows React to show more useful error and Continue Reading »