Learn JavaScript
4.3K subscribers
459 photos
10 videos
132 files
3.02K links
All info, tutorial, JS tips and more ....!
bio.link/javascript_js_
For HTML: @html_web_learn
For CSS: @CSS_web_learn
For JS: @JavaScript_js_learn
For PHP: @learn_php_web
For Programming courses @Programmingworld_dev
For CEH,Cybersec: @technical_stark
Download Telegram
Forwarded from Programming World👨‍💻 (☠️Anonymus Venom☠️)
SUPER AMAZING repo🔥🚀

Awesome list of everything related to programming, gaming, business, media, etc👇

- Web development
- Machine Learning
- Security
- Programming language
- Dig data
- Gaming
- Books
- Networking
- Many more


LINK 🔗

https://t.co/pEKHuj23sx

Follow @Programmingworld_dev for more programming stuff
Some miscellaneous resources for developers👇

➛ color.hailpixel .com

➛ favicon .cc

➛ freepik .com

➛ patternico .com

➛ app.diagrams .net

➛ devdocs .io

➛ resumake .io

➛ webcode .tools

➛ layoutit .com

➛ devhints .io
Forwarded from Learn Web Development
How to Learn Web Development Using Free Resources

https://www.freecodecamp.org/news/learn-web-development-for-free/amp/


#Webdevelopment #JS #JavaScript #Html #Css #web

Follow @learn_webdevelopment for Web development content
Forwarded from Learn CSS
Some lightweight CSS frameworks you can try for a quick project

🔹Pure
🔸Picnic CSS
🔹Chota
🔸Wing
🔹Milligram
🔸MUI
🔹Base
🔸Spectre
🔹Skeleton
Forwarded from Learn CSS
Found an amazing CSS GitHub repository🔥

In this repo you will find a huge categorised list of CSS frameworks based on

- Normalise
- Class-less
- Very lightweight
- General purpose
- Material design
- Specialized
- Toolkits
- Stalled development



🖇️ https://t.co/rYxHRVAcDr
Forwarded from Programming World👨‍💻 (☠️Anonymus Venom☠️)
6 GitHub repositories that can help you as a developer

📌 Art of Command Line

Learning command line interface is always beneficial for developer. In this repo you'll find different section for Linux, windows and MAC commands


https://t.co/uF2RlcUIxb

📌 Front-end Developers Bookmarks

A huge collection of resources for frontend web developers including appearance, architecture, compatibility etc

https://t.co/1G1q7mmC0t

📌 CSS Pro Tip

As the repo name suggests, In this repo you'll find a lot of tips and tricks that can help you to become a CSS pro

https://t.co/5haB2xTWuz

📌 Awesome Interview Questions

In this repo you'll find a huge list of interviews questions divided in the various section in according to the language, frameworks and libraries

https://t.co/iXNMTENv46

📌 30 Seconds of Code

Short JavaScript code snippets for all your development needs

https://t.co/zWcmMtg2xa

📌 Awesome Design Patterns

A curated list of software and architecture related design patterns divided in the various categories. Definitely check it out.

https://t.co/Cg3xHXuTuF


Follow @Programmingworld_dev for more programming stuff
JavaScript: What is a closure?

A closure is when an inner function has access to the variables in an outer functions scope, even when the outer function has already returned.
JAVASCRIPT Quiz Time

var s = "Nat"; console.log("Ba" + s[0] + s.charAt(1) + "na"); What is the output of this code?
Final Results
29%
undefined
19%
BaNundefinedna
52%
BaNana
Learn JavaScript pinned «JAVASCRIPT Quiz Time

var s = "Nat"; console.log("Ba" + s[0] + s.charAt(1) + "na"); What is the output of this code?
»
Forwarded from Learn CSS
Check out these cool websites for icons👇

🔹icons .getbootstrap.com
🔸simpleicons .org
🔹boxicons .com
🔸css .gg
🔹evil-icons .io
🔸feathericons .com
🔹heroicons .dev
🔸teenyicons .com
🔹 iconpark .bytedance.com
Found a super amazing GitHub repository🔥

Algorithms and data structures implemented in JavaScript👨‍💻

You'll understand complex algorithms and data structures with a great pictorial representation and reading


https://t.co/BGkhs3Mmci
Forwarded from Learn Html
3 websites I recommend every newbie to master their HTML and CSS skills

1. frontendmentor .io
2. devchallenges .io
3. awwwards .com
5 amazing GitHub repositories for Node.js developers

📌 Node Best Practice

- In this repo you'll find a divided list of best practice in terms of Projects, Error handling, code style, testing, docker file. etc...

🖇️ https://t.co/DqjYdMOYi0

📌 Awesome Node.js

- This is a huge huge list of awesome resources of Node.js in the form of packages, tutorials, articles, books, courses, tools, etc...

🖇️ https://t.co/4xD1AWTPAm

📌 Awesome Node.js Projects

- Curated list of awesome open-source applications made with Node.js

🖇️ https://t.co/JZ8FvGEHYY

📌 Boilerplate

- Start a new Node.js project with minimum efforts. A boilerplate for building production-ready RESTful APIs using Node.js, Express, and Mongoose

🖇️ https://t.co/Db99yVXpNV

📌 Node.js best structure

- This is a basic project structure for a node js project contain a full support for async/await , proper error handling, basic Joi Validation object oriented para-diagram and much more

🖇️ https://t.co/EIfwqtQ37L

Follow @learn_JavaScript_js for more JavaScript content.

_______________________

Follow my other channels

For HTML : @learn_html_web

For CSS : @learn_CSS_web

For PHP : @learn_php_web

For Programming tutorials/Courses/Materials :

@Programmingworld_dev

For any quires you can ask in this group :

@devlopers_hub
Learn JavaScript pinned «5 amazing GitHub repositories for Node.js developers 📌 Node Best Practice - In this repo you'll find a divided list of best practice in terms of Projects, Error handling, code style, testing, docker file. etc... 🖇️ https://t.co/DqjYdMOYi0 📌 Awesome…»
Found a super handy tool for you🔥

➵ A social media button generator with almost zero efforts🙅🏻‍♂️

🖇️ sharingbuttons.io
Consider the following arrays. What gets logged in various sorting conditions?

const arr1 = ['a', 'b', 'c']; const arr2 = ['b', 'c', 'a']; console.log( arr1.sort() === arr1, arr2.sort() == arr2, arr1.sort() === arr2.sort());
Final Results
16%
true true true
32%
true true false
26%
false false false
26%
true false true
Consider the following Set of objects spread into a new array. What gets logged?

const mySet = new Set([{ a: 1 }, { a: 1 } const result = [...mySet]; console.log(result);
Final Results
53%
[{a: 1}, {a: 1}]
47%
[{a: 1}]