This media is not supported in your browser
VIEW IN TELEGRAM
Что бы быстро открыть #GitHub репозиторий в #Stackblitz, добавьте blitz к домену:
Можно так же открыть конкретную ветку
#am_tips
github.com... -> githubblitz.com...Можно так же открыть конкретную ветку
#am_tips
Устанавливаем один npm пакет с разными именами (можно использовать для установки и использования разных версий одновременно).
Пример:
В итоге, в dependencies в вашем package.json будет нечто подобное:
#am_tips
Пример:
npm install jquery-ver-2@npm:jquery@2
В итоге, в dependencies в вашем package.json будет нечто подобное:
"dependencies": {
"jquery": "https://github.com/jquery/jquery/archive/refs/tags/3.3.0.tar.gz",
"jquery-ver-2": "npm:jquery@^2.2.4" <--- jquery@2 is installed as jquery-ver-2.
}
#am_tips
Cheatsheet по подготовке к собеседованию на JavaScript
https://www.freecodecamp.org/news/javascript-interview-prep-cheatsheet/
#am_tips #am_js_tips #am_cheatsheet
https://www.freecodecamp.org/news/javascript-interview-prep-cheatsheet/
#am_tips #am_js_tips #am_cheatsheet
freeCodeCamp.org
JavaScript Interview Prep Cheatsheet – Ace Your Coding Interviews with These Concepts
By rajat gupta I've carefully gone through over 50 resources, I've been through 10 JavaScript interviews, and I've landed a job at a unicorn startup. And throughout this entire process, I started to see a pattern in the most frequently asked JS inter...
Шпаргалка по названиям naming convention cases:
🖊️ camel case:
🖊️ kebab case:
🖊️ snake case:
🖊️ pascal case:
🖊️ flat case:
🖊️ upper flat case:
#am_tips
🖊️ camel case:
someName🖊️ kebab case:
some-name🖊️ snake case:
some_name🖊️ pascal case:
SomeName🖊️ flat case:
somename🖊️ upper flat case:
SOMENAME#am_tips
Заголовок
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Clear-Site-Data
#am_tips
Clear-Site-Data позволяет очистить данные в браузере (localstorage, кэши, service-workers, etc.) командой с сервера. Не работает в Safari.https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Clear-Site-Data
#am_tips
MDN Web Docs
Clear-Site-Data header - HTTP | MDN
The HTTP Clear-Site-Data response header sends a signal to the client that it should remove all browsing data of certain types (cookies, storage, cache) associated with the requesting website.
It allows web developers to have more control over the data stored…
It allows web developers to have more control over the data stored…
Indeed Career Guide - много советов по поиску работы, составлению резюме, подготовке к интервью и другому
https://www.indeed.com/career-advice
#am_tips
https://www.indeed.com/career-advice
#am_tips
TypeScript Tip
Вы можете использовать "
👍 Подписаться | 🔥 Бустануть | #am_tips
Вы можете использовать "
as const" на template literal string, чтобы заставить TypeScript вывести эту строку. Без "as const" по умолчанию будет выводиться "string".Please open Telegram to view this post
VIEW IN TELEGRAM