== : 타입 상관없이 일치=== : 타입도 일치0 == false // true 0 === false // false, because they are of a different type 1 == "1" // true, automatic type conversion for value only 1 === "1" // false, because they are of a different type null == undefined // true null === undefined // false '0' == false // true '0' === false // false
Since I wrote this answer, github released a native windows client(https://desktop.github.com/) which makes all the below steps redundant. You can also use sourcetree to get both git and mercurial setup on Windows.------------------------------------------------------------Here is how you would do it in Windows: 1. If you don't have git installed, see this article(https://help.github.com/article..
tar -xzf archive.tar.gz 위 커맨드를 이용하여 압축을 푼다. 아니면 Nautilus(파일 매니저) 프로그램을 사용해 더블클릭하여 안의 내용을 볼 수도 있다.만약 위 아카이브가 설치파일을 포함하고 있으면 아래 명령어로 설치한다. tar -xzf archive-name.tar.gz cd archive-name ./configure make sudo make install A위 설치명령어는 superuser 권한이 필요하며 계정의 home 디렉토리에서 실행 되어야 한다. 그냥 설치하지말고 아카이브 안에 "README" 나 "INSTALLATION" 이 있으면 이를 읽어볼 것을 권장함.