Skip to content

Instantly share code, notes, and snippets.

@casprwang
Last active February 13, 2017 03:51
Show Gist options
  • Save casprwang/cd3f43ed3e65ff2518d84f444c6a8e34 to your computer and use it in GitHub Desktop.
Save casprwang/cd3f43ed3e65ff2518d84f444c6a8e34 to your computer and use it in GitHub Desktop.
const counter = () => ({
count: s => {
return 'haha' + s
}
})
class counter {
count(s) {
return 'haha' + s
}
}
function counter () {
this.count = (s) => 'haha' + s
}
let cc = new counter()
console.log(cc.count('ha'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment