Skip to content

Instantly share code, notes, and snippets.

View withzhaoyu's full-sized avatar
🎯
Focusing

zyzhang withzhaoyu

🎯
Focusing
  • beijing,china
View GitHub Profile
@gaearon
gaearon / Classes.js
Created May 27, 2020 17:38
Beneath Classes: Prototypes
class Spiderman {
lookOut() {
alert('My Spider-Sense is tingling.');
}
}
let miles = new Spiderman();
miles.lookOut();