state creation in class components reactjs interview questions code example
Example: state creation in class components reactjs interview questions
class Car extends React.Component{
constructor(props){
super(props);
this.state = {
brand: "BMW",
color: "black"
}
}
}