Last active
November 27, 2017 13:26
-
-
Save seogi1004/399ac01e014a5359b4a4aa7a0aae45ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function MyClass() { | |
} | |
var MyClass = function() { | |
} | |
// -- 위의 두 구문은 동일하게 MyClass 클래스를 선언한다. | |
// -- 필자는 가독성 측면에서 두 번째 방식을 선호한다 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment