this.func0 = function() {
console.log('hi')
}
this.func0() // this works
func0() // but not this?
this.func0 = function() {
console.log('hi')
this.func0 = function() {
console.log('hi')
}
this.func0() // this works
func0() // but not this?
this.func0 = function() {
console.log('hi')