Skip to content

Instantly share code, notes, and snippets.

View egorzekov's full-sized avatar
🎯
Focusing

Egor Zekov egorzekov

🎯
Focusing
  • Lyft
  • Minsk, Belarus
View GitHub Profile
@egorzekov
egorzekov / bash-basics.sh
Last active September 9, 2019 12:44
CLI hints for Front-End developers
# Output file
cat package.json
# Save output to file
cat package.json > new-file.txt
# Copy outpub to clipboard
cat package.json | pbcopy
@egorzekov
egorzekov / 01-data-types.js
Last active May 18, 2018 06:40
Interview preparation
/*
Типы данных в JS. Приведение типов
*/
// primitives
const someString = 'some_string',
someNumber = 12345,
someBoolean = true,
someUndefined = undefined,
someNull = null;