Health Topic Library

PHP, JS, CSS, Python, and Machine Learning Technology

Browse trusted health articles by topic. Use the filters and A-Z index to quickly find related medical content.

526 articlesUpdated medical education library

A-Z article index

H

Latest articles

RX
Health Topic Library

BindActionCreators

One of the crucial thing in Redux is binding the action creators to dispatch. Without this binding firing an action creator will do nothing. Now mapDispatchToProps is not...

Read article
RX
Health Topic Library

Payload can be any valid JS

Payload is a non-official, community accepted (de facto) naming convention for the property that holds the actual data in a Redux action object. The official documentation...

Read article
RX
Health Topic Library

Reducers – Absolute Basic

Reducers – Absolute Basic Reducer is just a function that takes two arguments A) Action (which is just a plain JS object preferably with type property...

Read article
RX
Health Topic Library

Connect component

Connects a React component to a Redux store. The first argument to connect is mapStateToProps() function. What mapStateToProps() does is, it allows us to take our...

Read article
RX
Health Topic Library

What is state?

State is used internally by components to dynamically change data. Unlike props, state can only be set within the component itself. Unlike props, state is a...

Read article
RX
Health Topic Library

Server-side rendering (SSR)

Server-side rendering (SSR) typically improves SEO and performance. Server Side Rendering, also called SSR, is the ability of a JavaScript application to render on the server...

Read article
RX
Health Topic Library

React Hot Loader

React Hot Loader is a plugin that allows React components to be live reloaded without the loss of state. It works with Webpack and other bundlers...

Read article
RX
Health Topic Library

onChange event in plain JS

  The onchange event occurs when the value of an element has been changed. For radiobuttons and checkboxes, the onchange event occurs when the checked state...

Read article