js/4/forof.html

9 lines
178 B
HTML
Raw Normal View History

2024-09-17 14:41:00 -05:00
<html><body><script>
let colors = ["Red", "Green", "Blue"]; for (let color of colors) {
console.log(`${color} is a color.`);
}
</script></body></html>