Blog

  • Python If Else Statement

    If Else Conditional Statement In Python

    A conditional statement tests a given condition and returns either true of false.

    An If else statement is a boolean expression executing a block of code when the if and optional elseif conditions are false.

    (more…)

  • JavaScript If Else Statement

    If Else Statement In JavaScript

    If condition checks whether a specific condition is true or false.

    Logic condition executes a block of code if the specified condition is true. Else specifies a block to be executed, if the same condition is false.

    (more…)

  • Python If Elseif Statement

    If Elseif Conditional Statement In Python

    A conditional statement tests a given condition and returns either true of false.

    An If elseif statement is a boolean expression.

    (more…)

  • JavaScript If Else If Statement

    If Else If Statement In JavaScript

    If condition checks whether a specific condition is true or false.

    Logic condition executes a block of code if the specified condition is true. Else if specifies a new condition to test, if the first condition is false.

    (more…)

  • JavaScript If Conditional Statement

    If Statement In JavaScript

    If condition checks whether a specific condition is true or false.

    Logic condition executes a block of code if the specified condition is true.

    (more…)

  • Python If Statement

    If Conditional Statement In Python

    A conditional statement tests a given condition and returns either true of false.

    An If statement is a boolean expression.

    (more…)

  • JavaScript Multiple Dimensional Arrays

    Implement Multiple Dimensional Arrays In JavaScript Part IV of Array Series

    An array specifies a variable that can be indexed as a list in rows and columns. A multidimensional array at allows storing and accessing data in a table-like structure with more than one dimension.

    The first index is zero as is common in most programming languages. JavaScript objects can be used as associative arrays.

    (more…)