Salesforce JavaScript-Developer-I Question Answer
A developer creates a simple webpage with an input field. When a user enters text and clicks the button, the actual value must be displayed in the console:
HTML:
< input type= " text " value= " Hello " name= " input " >
< button type= " button " > Display < /button >
JavaScript:
01 const button = document.querySelector( ' button ' );
02 button.addEventListener( ' click ' , () = > {
03 const input = document.querySelector( ' input ' );
04 console.log(input.getAttribute( ' value ' ));
05 });
When the user clicks the button, the output is always " Hello " .
What needs to be done to make this code work as expected?

