<!DOCTYPE html>
<html>
<head>
<title>Sayfa başlığı</title>
</head>
<body>
<p>JavaScript aynı önceliğe sahip operatörler</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = 10 + 5 - 3;
</script>
</body>
</html>