Skip to content

Instantly share code, notes, and snippets.

View cchoi12's full-sized avatar
🐢
slow and steady

Christopher Choi cchoi12

🐢
slow and steady
View GitHub Profile
@cchoi12
cchoi12 / lol.js
Created April 21, 2018 21:11
wutthink
// ---- My Solution ----- //
const studentGrades = [
{ name: 'Joe', grade: 88 },
{ name: 'Jen', grade: 94 },
{ name: 'Steph', grade: 77 },
{ name: 'Allen', grade: 60 },
{ name: 'Gina', grade: 54 }
];
@cchoi12
cchoi12 / class.js
Last active April 13, 2018 22:05
Read further in prototypes and saw ES6 classes. A lot of syntactic sugar but the concepts are identical.
class Dog {
constructor(name, age) {
this.name = name
this.age = age
}
fetch(obj) {
return `Yo ${this.name}, go fetch the ${obj}`
}
}

Keybase proof

I hereby claim:

  • I am cchoi12 on github.
  • I am chrisgopher (https://keybase.io/chrisgopher) on keybase.
  • I have a public key whose fingerprint is A1CF E526 8FB5 808A 5DA1 1A6E FEF3 0FC5 5E0A 5553

To claim this, I am signing this object:

Hello World

Hello World

Hello World

Hello World

Hello World
Hello World
  • List Item 1
  • List Item 2
  • List Item 3