Dasturchilar uchun #Coding_Challenge Algoritmni rivojlantirishga yordam beradigan top saytlar to'plami.
1. www.hackerrank.com
2. www.coderbyte.com
3. https://exercism.io
4. www.codeforces.com
5. www.topcoder.com
6. www.leetcode.com
7. www.codechef.com
8. www.geeksforgeeks.org
9. https://edabit.com
10. https://codingbat.com
11. www.codewars.com
12. https://www.topcoder.com
13. www.freecodecamp.org/learn
14. https://the-winter.github.io/codingjs/
15. https://www.codingame.com/
16. https://codesignal.com/
17.https://the-winter.github.io/codingjs
18. https://robocontest.uz/
Kanalimiz @JsTutorial
#algoritm
#javascript
1. www.hackerrank.com
2. www.coderbyte.com
3. https://exercism.io
4. www.codeforces.com
5. www.topcoder.com
6. www.leetcode.com
7. www.codechef.com
8. www.geeksforgeeks.org
9. https://edabit.com
10. https://codingbat.com
11. www.codewars.com
12. https://www.topcoder.com
13. www.freecodecamp.org/learn
14. https://the-winter.github.io/codingjs/
15. https://www.codingame.com/
16. https://codesignal.com/
17.https://the-winter.github.io/codingjs
18. https://robocontest.uz/
Kanalimiz @JsTutorial
#algoritm
#javascript
Exercism
Learn, practice and get world-class mentoring in over 50 languages. 100% free.
//=== UNIVERSAL SELECTOR FUNCTION ====///
const $ = function (selector) {
return document.querySelector(selector)
}
//===UNIVERSAL SELECTOR FUNCTION ====///
const $$ = function (selector) {
return document.querySelectorAll(selector)
}
/// ======= DYNAMIC CREAT ELEMENT ======////
const createElement = function (tagName, className, content) {
const newElement = document.createElement(tagName);
if (className) {
newElement.setAttribute('class', className);
}
if (content) {
newElement.innerHTML = content
}
return newElement;
}
#selector
#createElement
const $ = function (selector) {
return document.querySelector(selector)
}
//===UNIVERSAL SELECTOR FUNCTION ====///
const $$ = function (selector) {
return document.querySelectorAll(selector)
}
/// ======= DYNAMIC CREAT ELEMENT ======////
const createElement = function (tagName, className, content) {
const newElement = document.createElement(tagName);
if (className) {
newElement.setAttribute('class', className);
}
if (content) {
newElement.innerHTML = content
}
return newElement;
}
#selector
#createElement