xxxxxxxxxx
<html>
<body>
<script>
let a = 10;
let b = 20;
// تساوي 50 سيتم تنفيذ أمر الطباعة b تساوي 10 و قيمة المتغير a الشرط التالي يعني أنه إذا كانت قيمة المتغير
if (a == 10 && b == 50)
{
document.write('The first and the second condition returns true');
}
</script>
</body>
</html>