React Express
1
Environment
1.1
Quick Start
1.2
Setup & Build Tools
...
2
Modern JavaScript
2.1
ES2015
...
2.2
ES2016 and More
...
Static Class Properties
Class Instance Properties
Bound Instance Methods
Object Spread
Async and Await
2.3
JSX
3
React Top-Level API
3.1
React Components
3.2
Component API
3.3
Lifecycle API
4
Styling
5
Fundamentals
5.1
Performance Model
5.2
Event Handling
5.3
Input Handling
5.4
Conditional Rendering
5.5
Lists and Keys
5.6
Refs and the DOM
6
Data Management
6.1
Component State
6.2
Redux
...
6.3
GraphQL
...
Static Class Properties
Static Class Properties
By
Gabe G'Sell
As we saw in our ES2015 section, static functions on classes exist as a part of ES2015. In ES2016, we can use the
static
keyword to declare static properties as well. Static properties exist directly on the class.
Previous - ES2016 and More
Next - Class Instance Properties