Skip to content

Instantly share code, notes, and snippets.

@zhongyangxun
Created October 11, 2020 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhongyangxun/17b990820f811bb140d61a0bf7e51c67 to your computer and use it in GitHub Desktop.
Save zhongyangxun/17b990820f811bb140d61a0bf7e51c67 to your computer and use it in GitHub Desktop.
const robot = {
walk() {
console.log('walk')
}
}
robot.walk = (function() {
const originWalk = robot.walk
return function() {
originWalk()
console.log('jump, walk, jump, walk')
}
})()
robot.walk()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment