Skip to content

Instantly share code, notes, and snippets.

@kyuwoo-choi
Created May 27, 2018 18:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyuwoo-choi/0a2e26d84a725ef104fa9dbea4c0a65f to your computer and use it in GitHub Desktop.
Save kyuwoo-choi/0a2e26d84a725ef104fa9dbea4c0a65f to your computer and use it in GitHub Desktop.
// javascript and html-element live together
class MyElement extends HTMLElement {
yey() {
console.log('yey');
}
}
document.querySelector('my-element').yey()
// 'yey'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment