JSFiddle - React, Tailwind, and code Playground
by Shang-De You
JavaScript
class C {
constructor (val) {
this.val = val
}
print () {
console.log(this.val)
}
}
const c1 = new C('test1')
const c2 = new C('test2')
c1.print()
by Shang-De You
class C {
constructor (val) {
this.val = val
}
print () {
console.log(this.val)
}
}
const c1 = new C('test1')
const c2 = new C('test2')
c1.print()