JSFiddle - React, Tailwind, and code Playground
by samdelagarza
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>learn about variables and functions</title>
<meta charset="utf-8">
<script type="text/javascript">
var who1 = prompt("what is your name?");
var who2 = prompt("who is your brother?");
function greet(who1, who2) {
alert("greetings to " + who1 + " " + who2);
}
greet(who1, who2);
</script>
</head>
<body></body>
</html>