Skip to content

Instantly share code, notes, and snippets.

@youxiachai
Created April 11, 2014 02:34
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 youxiachai/10437966 to your computer and use it in GitHub Desktop.
Save youxiachai/10437966 to your computer and use it in GitHub Desktop.
js 卖萌代码..
var Z = function () {
}
Z.prototype.s = function () {
console.log('hi s')
}
var S = function () {
}
S.prototype._ = new Z();
var s = new S();
s._.s();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment