alt
Home JavaScript와 관련해 겪은 이슈들, 간단한 메모
Post
Cancel

JavaScript와 관련해 겪은 이슈들, 간단한 메모


200215

  • typeof (ABC) (x) → typeof ABC


200223

  • 나머지 매개변수는 가장 마지막 인자에 들어와야 한다.

    1
    2
    3
    
    function foo(...rest) {} // O
      
    function foo2(arg1, ...rest, arg2) {} // X 에러 발생
    


200324

  • javascript에서 { 를 선언문과 같은 줄에서 시작해야 하는 이유
    • https://stackoverflow.com/questions/3641519/why-do-results-vary-based-on-curly-brace-placement
This post is licensed under CC BY 4.0 by the author.