Just started learning JavaScript can someone please tell me what is wrong with this code
<!DOCTYPE html>
<html>
<body>
<h1>Password Requirement</h1>
<p id="demo">Please enter your password</p>
<input id="myInput" type="text" >
<script>
function myFunction()
var a=document.getElementById("demo")
var b=document.getElementById("myInput").value
var c=document.getElementById("myBtn")
if (b=="26a8f9e"(b))
{
alert("Correct")
}
else
{
alert("Incorrect")
}
</script>
<button type="button" id="myBtn" onclick="myFunction()">Submit</button>
</body>
</html>