CSS works by associating rules with HTML elements. These rules govern how the content of specified elements should be displayed. A CSS rule contains two parts: a selector and a declaration.




Hello

Syntax: * var arrayName = new Array();
* var arrayName = new Array(Number length);
* var arrayName = new Array(element1, element2, element3,... elementN);

Evaluating conditions:
The result will be a Boolean :
1. True
2. False
( == ) is equal to , it’s compare two values to see if they the same.
( != ) is not equal to, it’s compare two values to see if they not the same .
(===) strict equal to , it’s compare two values to check that both the datatype and the value are the same .
(!==) strict not equal to, it’s compare two values to check that both the datatype and the value are not the same .
(>) greater than ,it checks if the number on the left is greater than the number on the right.
(<) less than , it checks if the number on the left is less than the number on the right .
( >=) greater than or equal to, it checks if the number on the left is greater than or equal to the number on the right.
(&&) logical and, it tests more than one condition.
| ( | ) logical or , it tests at least one condition. |

short circuit evaluation: Logical expressions are evaluated left to right . If the first condition can provide enough information to get the answer, then there is no need to evaluate the second condition.

A well-crafted Git commit message is the best way to communicate context about a change to fellow developers (and indeed to their future selves).