Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

nombres-dominio-hecho #118

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@ import "./style.css";
import "./assets/img/rigo-baby.jpg";
import "./assets/img/4geeks.ico";

window.onload = function() {
//write your code here
console.log("Hello Rigo from the console!");
};
let pronouns = ["the", "our"];
let adjs = ["great", "big"];
let nouns = ["jogger", "racoon"];

pronouns.forEach(pronouns => {
adjs.forEach(adj => {
nouns.forEach(noun => {
console.log(pronouns + adj + noun);
});
});
});