-
-
Some page designs expand and shrink to fit the size of the user's screen. In this case
min-width , max-width ,min-height and max-height are used -
when the content contained within a box is larger than the box itself the box overflow has been controlled
It is possible to hide elements visibility properties. visibility: hidden;
An array is a special type of variable. It doesn't just store one value; it stores a list of values.
- Values in an array are accessed as if they are in a numbered list. It is important to know that the numbering of this list starts at zero (not one).
- switch statements allow you to compare a value against possible outcomes (and also provides a default option if none match)
-
A for loop repeats until a specified condition evaluates to false
-
A while statement executes its statements as long as a specified condition evaluates to true.
-
loops through a block of code once, and then repeats the loop while a specified condition is true














