You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
446 B
19 lines
446 B
let pigments = ["perinone", "cadmium",
|
|
"titanium", "ultramarine", "napthol"];
|
|
|
|
let i = 0;
|
|
// you've seen this already
|
|
while(i < pigments.length) {
|
|
console.log(`while ${i}=${pigments[i]}`);
|
|
i++;
|
|
}
|
|
|
|
// you can do the above in one move like this
|
|
for(let i = 0; i < pigments.length; i++) {
|
|
console.log(`for ${i}=${pigments[i]}`);
|
|
}
|
|
|
|
// but this is the easiest of all
|
|
for(let paint of pigments) {
|
|
console.log(`for-of ${paint}`);
|
|
}
|
|
|