JSFiddle - React, Tailwind, and code Playground

by lavisha99

HTML

<html>
<h1>
INFOSYS280 - Business System Construction
</h1>


<p>
This is the start of my code log
</p>

<button>
Press Me
</button>
</html>

JavaScript

var myButton = document.querySelector('button');
var myHeading = document.querySelector('h1');
function setUserName() {
  var myName = prompt('Please enter your name.');
  localStorage.setItem('name', myName);
  myHeading.textContent = 'Mozilla is cool, ' + myName;
}

myButton.onclick = function() {
  setUserName();
}