Skip to content

Instantly share code, notes, and snippets.

@khg0712
Created May 19, 2018 16:37
Show Gist options
  • Save khg0712/0cc70145972475f2cd1f7a7a7405b7b6 to your computer and use it in GitHub Desktop.
Save khg0712/0cc70145972475f2cd1f7a7a7405b7b6 to your computer and use it in GitHub Desktop.
함수 프로퍼티 예시
var add = function(a,b) {
return a + b;
};
add.k = 0;
console.log(add.k);//0 출력
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment