موقع الرياضيات العربية أون لاين

أ. محمد عبدالمنعم الملط
مؤسس الموقع يرحب بكم
فى
موقع الرياضيات العربية أون لاين
أشهر مواقعى
www.mathtech.co.nr



انضم إلى المنتدى ، فالأمر سريع وسهل

موقع الرياضيات العربية أون لاين

أ. محمد عبدالمنعم الملط
مؤسس الموقع يرحب بكم
فى
موقع الرياضيات العربية أون لاين
أشهر مواقعى
www.mathtech.co.nr

موقع الرياضيات العربية أون لاين

هل تريد التفاعل مع هذه المساهمة؟ كل ما عليك هو إنشاء حساب جديد ببضع خطوات أو تسجيل الدخول للمتابعة.

برمجيات الرياضيات لجميع المراحل التعليمية


    JavaScript If...Else Statements

    Admin
    Admin
    Admin


    عدد المساهمات : 100
    تاريخ التسجيل : 16/02/2011

    JavaScript If...Else Statements Empty JavaScript If...Else Statements

    مُساهمة  Admin الثلاثاء فبراير 22, 2011 5:15 pm

    JavaScript If...Else Statements

    --------------------------------------------------------------------------------

    Conditional statements are used to perform different actions based on different conditions.


    --------------------------------------------------------------------------------

    Conditional Statements
    Very often when you write code, you want to perform different actions for different decisions. You can use conditional statements in your code to do this.

    In JavaScript we have the following conditional statements:

    •if statement - use this statement to execute some code only if a specified condition is true
    •if...else statement - use this statement to execute some code if the condition is true and another code if the condition is false
    •if...else if....else statement - use this statement to select one of many blocks of code to be executed
    •switch statement - use this statement to select one of many blocks of code to be executed

    --------------------------------------------------------------------------------

    If Statement
    Use the if statement to execute some code only if a specified condition is true.

    Syntax
    if (condition)
    {
    code to be executed if condition is true
    }

    Note that if is written in lowercase letters. Using uppercase letters (IF) will generate a JavaScript error!

      الوقت/التاريخ الآن هو الجمعة أبريل 26, 2024 3:26 pm