๐ฐ Github repositories every Developer should know ๐ฐ
โ๏ธA very popular repo that curates all topics from Development, testing, business, etc, etc.
https://github.com/sindresorhus/awesome
โ๏ธClean Code JavaScript
https://github.com/ryanmcdermott/clean-code-javascript
โ๏ธTech Interview Handbook
https://github.com/yangshun/tech-interview-handbook
โ๏ธDeveloper Roadmaps, articles and resources for developers.
https://github.com/kamranahmedse/developer-roadmap
โ๏ธ33 JS Concepts
https://github.com/leonardomso/33-js-concepts
โ๏ธBest websites a programmer should visit
https://github.com/sdmg15/Best-websites-a-programmer-should-visit
โ๏ธDesign Resources for Developers
https://github.com/bradtraversy/design-resources-for-developers
โ๏ธBig List of Naughty Strings:
https://github.com/minimaxir/big-list-of-naughty-strings
Join on telegram
https://t.iss.one/WebsiteDesignLearningGroup
โ๏ธA very popular repo that curates all topics from Development, testing, business, etc, etc.
https://github.com/sindresorhus/awesome
โ๏ธClean Code JavaScript
https://github.com/ryanmcdermott/clean-code-javascript
โ๏ธTech Interview Handbook
https://github.com/yangshun/tech-interview-handbook
โ๏ธDeveloper Roadmaps, articles and resources for developers.
https://github.com/kamranahmedse/developer-roadmap
โ๏ธ33 JS Concepts
https://github.com/leonardomso/33-js-concepts
โ๏ธBest websites a programmer should visit
https://github.com/sdmg15/Best-websites-a-programmer-should-visit
โ๏ธDesign Resources for Developers
https://github.com/bradtraversy/design-resources-for-developers
โ๏ธBig List of Naughty Strings:
https://github.com/minimaxir/big-list-of-naughty-strings
Join on telegram
https://t.iss.one/WebsiteDesignLearningGroup
GitHub
GitHub - sindresorhus/awesome: ๐ Awesome lists about all kinds of interesting topics
๐ Awesome lists about all kinds of interesting topics - sindresorhus/awesome
๐8โค2
โ
Javascript Reduce method Example.
โซ๏ธ Finding the longest word in a given string.
function longerWord(a, b) {
if (a.length > b.length) {
return a;
} else {
return b;
}
}
const sentence = 'Hey there what are you doing this Wednesday night';
const longest = sentence.split(' ').reduce(longerWord);
console.log(longest);
// Wednesday
#JavaScript
(๐) โข @WebsiteDesignLearningGroup
โซ๏ธ Finding the longest word in a given string.
function longerWord(a, b) {
if (a.length > b.length) {
return a;
} else {
return b;
}
}
const sentence = 'Hey there what are you doing this Wednesday night';
const longest = sentence.split(' ').reduce(longerWord);
console.log(longest);
// Wednesday
#JavaScript
(๐) โข @WebsiteDesignLearningGroup
๐6๐ฅ1
What will be the output of the following code? console.log(2 + "2" - 1);
Anonymous Quiz
32%
21
33%
"21"
29%
3
7%
11
๐3๐คฃ3โค2
๐2