This is a short question which only requires one state variable, which is the number of times the button has been clicked (count
).
Declare count
as an instance variable and create a method increment
that increments the count
. This method is bound to the <button>
's click action and will be called when the <button>
is clicked.
Note: This is a short warm up question meant to help you familiarize with the coding workspace. Actual UI coding interview questions will be more complicated.
Make the text within the button display the number of times the button has been clicked.
This is a short question which only requires one state variable, which is the number of times the button has been clicked (count
).
Declare count
as an instance variable and create a method increment
that increments the count
. This method is bound to the <button>
's click action and will be called when the <button>
is clicked.
console.log()
statements will appear here.