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
## The --depth=14 option just tells Git to pull down only the last 14 commits. This makes the download much smaller and faster. | |
git clone --depth=14 https://github.com/xxx/xxx | |
## typeof method in javascript | |
typeof 1; // number | |
typeof "1"; // string | |
typeof null; // object | |
typeof undefined; // undefined |