Best of MediumFebruary 2021

  1. 1
    Article
    Avatar of medium_jsMedium·5y

    Handle JavaScript Events Like A Pro

    An event propagates in 3 phases: capture, bubble and target. If an event has occurred on a button then it will also be triggered by its parent and its parent’s parent and so on up until the HTML element. An event bubbling is the propagation of an event from its origin towards the root element.

  2. 2
    Article
    Avatar of medium_jsMedium·5y

    Using Vue vs React

    Vue.js and React.js are two popular frontend (FE) JavaScript frameworks among web developers worldwide at present. Vue uses HTML templates by default, but there’s an option for writing in JavaScript Expressions (JSX) React relies on routing and state control on external solutions such as Flux/Redux.

  3. 3
    Article
    Avatar of medium_jsMedium·5y

    13 VSCode Extensions That Every Web Developer Must Use

  4. 4
    Article
    Avatar of medium_jsMedium·5y

    Writing a Node.js GraphQL backend that actually scales — A complete guide — Part 1: Setup

    GraphQL is a popular alternative for building your backend application. The ultimate objective of this series of articles is to show you how to build it from scratch in a proper manner. The tutorial will be for beginners, but there are other better resources to learn about primitive types.

  5. 5
    Article
    Avatar of medium_jsMedium·5y

    Three important Concepts in JavaScript

    There is a lot of an important lot of concept in JavaScript. If you are a JavaScript developer, then you need to know these three concepts. When we create an object, it generates a new memory address. There are two types of scopes in JavaScript according to where we can use a variable inside our code.