Skip to content

Instantly share code, notes, and snippets.

@tgxhx
tgxhx / publiczone-email-hash.txt
Created November 28, 2025 07:36
PublicZone email hash verification
a96ee77839f7e465ae4b6261fcab197eb7cb1d35
@tgxhx
tgxhx / ES5vsES6.js
Created July 9, 2019 02:04 — forked from zeusdeux/ES5vsES6.js
ES5 inheritance vs ES6 inheritance
/* ES6/ES2015 classes */
class A {
constructor() {
this.a = 10
}
print() {
console.log(this.a, this.b)
}
}