R202_-_SU_2024_-_FE_2268.webp
I

R202_-_SU_2024_-_FE_2268.webp

  • Media owner Ino2004
  • Ngày thêm
Kizspy | Question: 9 (Choose 1 answer)
import React, { Component } from 'react';
class Counter extends Component {
constructor(props) {
super(props);this.state = {
count: 0
incrementCount() {
};}// TODO: Increase the count state by 1 } );
render() {
return ( <div>
<p>Count: {this.state.count}</p>
<button onClick={this.incrementCount}>Increment</button>
</div>
export default Counter;
In the code above, how can we increase the value of the count state by 1 when the user clicks the "Increment"button?
A. Call the method this.setState({ count: this.state.count + 1}) inside the incrementCount method.
B. Assign a new value to count using the assignment operator (=) inside the incrementCount method.
C. Call the method this.state.count += 1 inside the incrementCount method.
D. Use this.setState(count + 1) inside the incrementCount method.

Thông tin

Category
FER202
Thêm bởi
Ino2004
Ngày thêm
Lượt xem
3,112
Lượt bình luận
15
Rating
0.00 star(s) 0 đánh giá

Share this media

Back
Bên trên Bottom