JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript" src="script.js"></script>
<meta charset="UTF-8">
<title>McKinsey Prep</title>
<div>
<button onclick="clicked()">Some Button</button>
</div>
</head>
<body>
</body>
</html>
JavaScript
console.log("Code has reached here")
function clicked(){
console.log("Button was clicked REEEEe")
}