JSFiddle - React, Tailwind, and code Playground
by Shang-De You
JavaScript
window.word = 'hello world'
let people = {
word: 'how are you',
say: () => {
console.log(this.word)
}
}
people.say() // 印出 hello world
by Shang-De You
window.word = 'hello world'
let people = {
word: 'how are you',
say: () => {
console.log(this.word)
}
}
people.say() // 印出 hello world