javascript
// Get value from input button click
const inputButton = document.getElementById('inputButton');

inputButton.addEventListener('click', () => {
    const inputValue = inputButton.value;
    console.log(`Input Button Value: ${inputValue}`);
});