Skip to content

Instantly share code, notes, and snippets.

@0xMALVEE
Last active April 3, 2023 09:57
Show Gist options
  • Save 0xMALVEE/2f9a4f22c36d9d6f539344496ad8d78f to your computer and use it in GitHub Desktop.
Save 0xMALVEE/2f9a4f22c36d9d6f539344496ad8d78f to your computer and use it in GitHub Desktop.
Dry gist
const pets = ['Cat', 'Dog', 'Bird', 'Fish', 'Frog', 'Hamster', 'Pig', 'Horse', 'Lion', 'Dragon'];
// Print all pets
console.log(pets[0]);
console.log(pets[1]);
console.log(pets[2]);
console.log(pets[3]);
...
.cat {
font-family: "Times New Roman", Times, serif;
font-size: 1rem;
color: #FFF;
}
.dog {
font-family: "Times New Roman", Times, serif;
font-size: 1rem;
color: #000;
}
.dragon {
font-family: "Times New Roman", Times, serif;
font-size: 1rem;
color: #009933;
}
const greet = (message, name) => {
console.log(`${message}, ${name}!`)
}
greet('Hello', 'John');
greet('Hola', 'Antonio');
greet('Ciao', 'Luigi')
.greetings {
font-family: Arial, sans-serif;
font-size: 1.5rem;
}
.greetings.english {
background-color: #000;
color: #FFF;
}
.greetings.spanish {
background-color: #FFF;
color: #000;
}
@0xMALVEE
Copy link
Author

0xMALVEE commented Apr 3, 2023

can use for loop instead of each index

@0xMALVEE
Copy link
Author

0xMALVEE commented Apr 3, 2023

2nd one is good

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment