JSFiddle - React, Tailwind, and code Playground

by Mikael Roos

HTML

<p><a href='javascript:helloWorld()'>Click me to see Hello World in an alert...</a></p> 

<script>
console.log('doing js in head-section');

function helloWorld() {
  console.log('called function helloWorld()');
  alert('Hello World from a JavaScript function showing an alert.');
}
</script>

JavaScript

window.helloWorld = function() {
  console.log('called function helloWorld()');
  alert('Hello World from a JavaScript function showing an alert.');
}