diff options
| -rw-r--r-- | javascript.html.markdown | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/javascript.html.markdown b/javascript.html.markdown index 52084e93..ecaf02c5 100644 --- a/javascript.html.markdown +++ b/javascript.html.markdown @@ -266,6 +266,15 @@ for (var x in person){      description += person[x] + " ";  } // description = 'Paul Ken 18 ' +// The for/of statement allows iteration over iterable objects (including the built-in String,  +// Array, e.g. the Array-like arguments or NodeList objects, TypedArray, Map and Set,  +// and user-defined iterables). +var myPets = ""; +var pets = ["cat", "dog", "hamster", "hedgehog"]; +for (var pet of pets){ +    myPets += pet + " "; +} // myPets = 'cat dog hamster hedgehog ' +  // && is logical and, || is logical or  if (house.size == "big" && house.colour == "blue"){      house.contains = "bear"; | 
