Skip to content

Instantly share code, notes, and snippets.

@ntnyq
Created October 17, 2018 06:00
Show Gist options
  • Save ntnyq/72329f49dc40f8305151557174c65ac4 to your computer and use it in GitHub Desktop.
Save ntnyq/72329f49dc40f8305151557174c65ac4 to your computer and use it in GitHub Desktop.
单例模式
var ntnyq = function () {
function Goy () {}
Goy.fn = Goy.prototype;
return new Goy();
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment