JavaScript Variables

PHOTO EMBED

Thu Mar 02 2023 21:03:11 GMT+0000 (Coordinated Universal Time)

Saved by @MyaGwen #javascript

const buttonA = document.querySelector('#button_A');
const headingA = document.querySelector('#heading_A');

buttonA.onclick = () => {
  const name = prompt('What is your name?');
  alert(`Hello ${name}, nice to see you!`);
  headingA.textContent = `Welcome ${name}`;
}
content_copyCOPY

https://skills.instincthub.com/students/course/106/678/