js/4/forof.html
2024-09-17 14:41:00 -05:00

9 lines
178 B
HTML

<html><body><script>
let colors = ["Red", "Green", "Blue"]; for (let color of colors) {
console.log(`${color} is a color.`);
}
</script></body></html>