xxxxxxxxxx
<html>
<body>
<script>
let age = 15;
// أكبر أو تساوي 18 فإنه سيتم تنفيذ الأمر الموجود فيها age هذا الشرط يعني أنه إذا كانت قيمة
if(age >= 18)
{
document.write('You are allowed.');
}
</script>
</body>
</html>
xxxxxxxxxx
<html>
<body>
<script>
let age = 15;
// أكبر أو تساوي 18 فإنه سيتم تنفيذ الأمر الموجود فيها age هذا الشرط يعني أنه إذا كانت قيمة
if(age >= 18)
{
document.write('You are allowed.');
}
</script>
</body>
</html>