Skip to content

Instantly share code, notes, and snippets.

@JaysonChiang
Last active April 10, 2021 10:31
Show Gist options
  • Save JaysonChiang/751d56d92353402b2bd57579d9bdb7f0 to your computer and use it in GitHub Desktop.
Save JaysonChiang/751d56d92353402b2bd57579d9bdb7f0 to your computer and use it in GitHub Desktop.
const joe = {
update(message) {
console.log(`Joe receive ${message}`);
}
}
const jason = {
update(message) {
console.log(`Jayson read ${message}`);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment