Skip to content

Instantly share code, notes, and snippets.

@tkihira
Created March 29, 2012 01:57
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 tkihira/2232412 to your computer and use it in GitHub Desktop.
Save tkihira/2232412 to your computer and use it in GitHub Desktop.
test for cc
/**
* @constructor
*/
var f1 = function() {
};
/**
*
*/
f1.prototype.foo = function() {
console.log("f1");
};
new f1().foo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment