Почему SvelteJS возможно лучший фреймворк для новых веб-разработчиков
https://habr.com/ru/post/446026/
https://habr.com/ru/post/446026/
Записка frontend-архитектора #1. Нельзя просто так взять и использовать Redux
https://habr.com/ru/post/445966/
https://habr.com/ru/post/445966/
Создание продовольственного магазина с использованием Redux и Angular
https://www.telerik.com/blogs/building-a-food-store-using-redux-and-angular
https://www.telerik.com/blogs/building-a-food-store-using-redux-and-angular
Иллюстрированное (и музыкальное) руководство по методам массивов Map, Reduce и Filter
https://css-tricks.com/an-illustrated-and-musical-guide-to-map-reduce-and-filter-array-methods/
https://css-tricks.com/an-illustrated-and-musical-guide-to-map-reduce-and-filter-array-methods/
CSS-Tricks
An Illustrated (and Musical) Guide to Map, Reduce, and Filter Array Methods | CSS-Tricks
Map, reduce, and filter are three very useful array methods in JavaScript that give developers a ton of power in a short amount of space. Let’s jump right
eslint-plugin-unicorn: набор различных правил для ESLint
https://github.com/sindresorhus/eslint-plugin-unicorn
https://github.com/sindresorhus/eslint-plugin-unicorn
CSS Houdini может изменить способ, которым мы пишем и управляем CSS
https://css-tricks.com/css-houdini-could-change-the-way-we-write-and-manage-css/
https://css-tricks.com/css-houdini-could-change-the-way-we-write-and-manage-css/
CSS-Tricks
CSS Houdini Could Change the Way We Write and Manage CSS | CSS-Tricks
CSS Houdini may be the most exciting development in CSS. Houdini is comprised of a number of separate APIs, each shipping to browsers separately, and some
Прикольное использование псевдоэлементов ::before и ::after
https://zendev.com/2019/03/28/cool-uses-of-before-after-pseudoelements.html
https://zendev.com/2019/03/28/cool-uses-of-before-after-pseudoelements.html
Самые необходимые строковые и числовые методы в JavaScript
https://medium.com/@stasonmars/66ca6da651ef
https://medium.com/@stasonmars/66ca6da651ef
Medium
Самые необходимые строковые и числовые методы в JavaScript
В этой статье, а скорее памятке, вы найдете все самые необходимые методы для работы со строками и числами (за исключением Math)
Solid — лучшая JS UI-библиотека, о которой вы никогда не слышали
https://levelup.gitconnected.com/solid-the-best-javascript-ui-library-youve-never-heard-of-297b22848ac1
https://levelup.gitconnected.com/solid-the-best-javascript-ui-library-youve-never-heard-of-297b22848ac1
Medium
Solid — The Best JavaScript UI Library You’ve Never Heard Of
The last thing anyone is looking for is another JavaScript UI Library/Framework. But here we are anyway.
VueJs Amsterdam 2019 — Краткий обзор мероприятия и докладов (часть 1)
https://www.telerik.com/blogs/vuejs-amsterdam-2019-an-experience-and-talks-summary-part-1
https://www.telerik.com/blogs/vuejs-amsterdam-2019-an-experience-and-talks-summary-part-1
Telerik Blogs
VueJs Amsterdam 2019—An Experience & Talks Summary (Part 1)
VueJs Amsterdam 2019 – the experience and talks summary. What’s new in the world of frontend and Vue development.
12 хитростей JavaScript, которых вы не найдете в большинстве уроков
http://jem-space.ru/12-khitrostiei-javascript-kotorykh-vy-nie-naidietie-v-bolshinstvie-urokov/
http://jem-space.ru/12-khitrostiei-javascript-kotorykh-vy-nie-naidietie-v-bolshinstvie-urokov/
Jem Space
12 хитростей JavaScript, которых вы не найдете в большинстве уроков
Когда я начал изучать JavaScript, я составлял список хитростей, которые находил в чужом коде, на веб-сайтах, посвященных проверке кода, и в любых других местах, кроме учебных пособий, которые я использовал. С тех пор я пополняю этот список, и в этой статье…
Все, что вам нужно знать о Promise.all
https://medium.freecodecamp.org/promise-all-in-javascript-with-example-6c8c5aea3e32
https://medium.freecodecamp.org/promise-all-in-javascript-with-example-6c8c5aea3e32
freeCodeCamp.org
All you need to know about Promise.all
By Srebalaji Thirumalai Promises in JavaScript are one of the powerful APIs that help us to do Async operations. Promise.all takes Async operations to the next new level as it helps you to aggregate a group of promises. In other words, I can say that...