I am writing a simple calculator that calculates income made, income spent on food, housing, etc. I want to make the header change to: Budget analysis for "Name Here" Using:
var Name=prompt("Enter Your Name.","Name")
How would I do this
I am writing a simple calculator that calculates income made, income spent on food, housing, etc. I want to make the header change to: Budget analysis for "Name Here" Using:
var Name=prompt("Enter Your Name.","Name")
How would I do this
 
    
     
    
    document.addEventListener("DOMContentLoaded", function(){
  var Name = prompt("Enter Your Name.","Name");
  document.getElementById('name').innerHTML = Name;
})<h1>Budget analysis for <span id="name"></span></h1>