window.location과 document.location 실제로는 같은 방식으로 사용합니다.


공식적으로 window.location은 현재 위치를 object 값으로 가져올 수 있는 표준방법이고 


document.location는 현재 URL 값이 String으로 반환됩니다.


이러한 혼란을 피하기 위해 document.location은 document.URL로 변경되었습니다.


모든 최신 브라우저는 document.location을 window.location에 매핑하고 있습니다. 



'프로그래밍 용어' 카테고리의 다른 글

Coding Style - 네이밍 룰  (0) 2016.08.24
414 request 오류  (0) 2016.08.08
요다 조건문 / Yoda Conditions  (0) 2016.08.02

맥에서 알파벳 입력 유지시 액센트 문자 팝업 비활성화




터미널에 입력하시면 됩니다.


defaults write -g ApplePressAndHoldEnabled -bool false






1. 카멜 표기법(Camel Notation)

두 개 이상의 단어로 이루어진 변수 이름에서 첫 단어는 소문자로 시작하고, 나머지 단어는 모두 대문자로 시작하는 방식.


getPrice, getChange



2. 헝가리언 표기법(Hungarian Notation)

변수 명에 변수의 타입을 접미어를 붙여 명시하는 방식


int price -> nPrice

String customer -> sCustomer



3. 파스칼 표기법(Pascal Notation)

모든 단어의 시작을 대문자로 표기하는 방법


GetPrice, GetChange



4. 언더스코어 표기법(Underscore Notation)

각 단어를 구분하기 위해 언더스코어를 사용


get_price, get_change, first_customer


'프로그래밍 용어' 카테고리의 다른 글

window.location document.location 차이점  (0) 2017.05.12
414 request 오류  (0) 2016.08.08
요다 조건문 / Yoda Conditions  (0) 2016.08.02