Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Java Script/2011년스터디/서지혜: Difference between revisions

From ZeroWiki
imported>rabierre
No edit summary
imported>rabierre
No edit summary
Line 1: Line 1:
* 함수
* 함수
** 중첩함수
** 중첩함수
        function duple_test() {
function duple_test() {
function inner(){
  function inner(){
}
  }
  } // good
  } // good



Revision as of 06:44, 18 January 2011

  • 함수
    • 중첩함수
function duple_test() {
  function inner(){
  }
}	// good