— javascript, react.js, state-define — 1 min read
1// Code goes here2class First {3 state = {4 value: true,5 };6}78class Second {9 constructor() {10 this.state = {11 value: true,12 };13 }14}
1// Code goes here2class First {3 constructor() {4 this.state = {5 value: true,6 };7 }8}910class Second {11 constructor() {12 this.state = {13 value: true,14 };15 }16}
state선언을 constructor에서 선언하는 것과 class property로 선언하는 것은 같다.