Skip to content

Instantly share code, notes, and snippets.

View ashu17706's full-sized avatar
🎯
Focusing

Ashutosh Tripathi ashu17706

🎯
Focusing
View GitHub Profile
@kentcdodds
kentcdodds / class-fields.js
Created April 3, 2018 16:00
Example of using class fields
// Use class fields!
// https://github.com/tc39/proposal-class-fields
// Here's what you might be doing today...
class A extends B {
constructor(...args) {
super(...args)
this.foo = 'bar'
this.foobar = `${this.foo}bar`
}