CJCoding With Joseph
15per day
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
Java Quiz #39

Button Click Handler

easyJavaFX

What happens when the user clicks the button in this code?

📄 Code

1Button btn = new Button("Click Me");
2Label label = new Label("Waiting...");
3 
4btn.setOnAction(e -> label.setText("Clicked!"));