1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-01 20:40:42 +02:00

Merge pull request #3148 from hamidra/hamid/js

[javascript/en] add for/of loops
This commit is contained in:
Divay Prakash
2018-09-08 17:08:04 +05:30
committed by GitHub

View File

@@ -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";