Skip to content

Instantly share code, notes, and snippets.

@lushijie
Created June 2, 2016 01:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lushijie/113f4e16754895106bc59abeb46c6bf8 to your computer and use it in GitHub Desktop.
Save lushijie/113f4e16754895106bc59abeb46c6bf8 to your computer and use it in GitHub Desktop.
简短版函数调用
function x() {
console.log('x')
};
function y() {
console.log('y')
};
var z = 3;
(z==3?x:y)();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment