Skip to content

Instantly share code, notes, and snippets.

View BigaDev's full-sized avatar

Biga Gaber BigaDev

  • Incorta
  • Egypt, Alexandria
View GitHub Profile
@BigaDev
BigaDev / TIL
Last active August 29, 2015 14:14
Today I learn
## 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