* перечислить базовые типы JavaScript
* в чем разница между `.call` и .`apply?`
* что делает и для чего нужна функци `.bind`?
* в чем отличие между `var`, `let`, `const`
* в чем отличия между `function` и `arrow function`
* что такое `scope` и как он работает
* как работает наследование в JS
* чем отличается абстрактный класс от интерфейса
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
| # delete local tag '12345' | |
| git tag -d 12345 | |
| # delete remote tag '12345' (eg, GitHub version too) | |
| git push origin :refs/tags/12345 | |
| # alternative approach | |
| git push --delete origin tagName | |
| git tag -d tagName |
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
| F3 – MSI; | |
| F4 – Samsung. Под ОС можно через Samsung Recovery Solution III; | |
| F8 – Fujitsu Siemens. Вообще часто позволяет попасть и на других ноутбуках (через сторку устранение неполадок) в фирменную утилиту для Recovery. | |
| F8 — Toshiba | |
| F9 — ASUS; | |
| F10 — Sony VAIO. Под ОС можно через VAIO Recovery Utility; | |
| F10 — Packard Bell; | |
| F11 — HP Pavilion; | |
| F11 — LG; |
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
| [foo]: http://example.com/ "Optional Title Here" | |
| [foo]: http://example.com/ 'Optional Title Here' | |
| [foo]: http://example.com/ (Optional Title Here) |
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
| var inherit = function(a, b) { | |
| function c() { | |
| } | |
| c.prototype = b.prototype; | |
| a.superClass_ = b.prototype; | |
| a.prototype = new c; | |
| a.prototype.constructor = a; | |
| a.base = function(a, c, f) { | |
| for (var g = Array(arguments.length - 2), h = 2;h < arguments.length;h++) { | |
| g[h - 2] = arguments[h]; |
NewerOlder