x
1
2
<html>
3
<body>
4
5
<h1>JavaScript if else and else if Conditions</h1>
6
7
<script>
8
let username = "Moahmed";
9
if (username == "Moahmed")
10
document.write( "Welcome " + username);
11
</script>
12
13
</body>
14
</html>
<html>
<body>
<h1>JavaScript if else and else if Conditions</h1>
<script>
let username = "Moahmed";
if (username == "Moahmed")
document.write( "Welcome " + username);
</script>
</body>
</html>