Skip to content

Instantly share code, notes, and snippets.

View liammccon's full-sized avatar

Liam McConlogue liammccon

View GitHub Profile
@liammccon
liammccon / pokemon.js
Created February 15, 2023 21:10
My code for the All Star Code JavaScript Assessment
class Pokemon {
constructor(name, attack, defense, health, type ) {
this.name = name;
this.attack = attack;
this.defense = defense;
this.health = health;
this.type = type;
this.initialHealth = health;
}
@liammccon
liammccon / booststrap-form-liam-mcconlogue-cs221-pr1-ltm34.markdown
Created October 27, 2022 14:54
Booststrap Form - Liam McConlogue - CS221-PR1-ltm34