4 776
Подписчики
Нет данных24 часа
+87 дней
+9530 день
Архив постов
4 776
Master Javascript :
The JavaScript Tree 👇
|
|── Variables
| ├── var
| ├── let
| └── const
|
|── Data Types
| ├── String
| ├── Number
| ├── Boolean
| ├── Object
| ├── Array
| ├── Null
| └── Undefined
|
|── Operators
| ├── Arithmetic
| ├── Assignment
| ├── Comparison
| ├── Logical
| ├── Unary
| └── Ternary (Conditional)
||── Control Flow
| ├── if statement
| ├── else statement
| ├── else if statement
| ├── switch statement
| ├── for loop
| ├── while loop
| └── do-while loop
|
|── Functions
| ├── Function declaration
| ├── Function expression
| ├── Arrow function
| └── IIFE (Immediately Invoked Function Expression)
|
|── Scope
| ├── Global scope
| ├── Local scope
| ├── Block scope
| └── Lexical scope
||── Arrays
| ├── Array methods
| | ├── push()
| | ├── pop()
| | ├── shift()
| | ├── unshift()
| | ├── splice()
| | ├── slice()
| | └── concat()
| └── Array iteration
| ├── forEach()
| ├── map()
| ├── filter()
| └── reduce()|
|── Objects
| ├── Object properties
| | ├── Dot notation
| | └── Bracket notation
| ├── Object methods
| | ├── Object.keys()
| | ├── Object.values()
| | └── Object.entries()
| └── Object destructuring
||── Promises
| ├── Promise states
| | ├── Pending
| | ├── Fulfilled
| | └── Rejected
| ├── Promise methods
| | ├── then()
| | ├── catch()
| | └── finally()
| └── Promise.all()
|
|── Asynchronous JavaScript
| ├── Callbacks
| ├── Promises
| └── Async/Await
|
|── Error Handling
| ├── try...catch statement
| └── throw statement
|
|── JSON (JavaScript Object Notation)
||── Modules
| ├── import
| └── export
|
|── DOM Manipulation
| ├── Selecting elements
| ├── Modifying elements
| └── Creating elements
|
|── Events
| ├── Event listeners
| ├── Event propagation
| └── Event delegation
|
|── AJAX (Asynchronous JavaScript and XML)
|
|── Fetch API
||── ES6+ Features
| ├── Template literals
| ├── Destructuring assignment
| ├── Spread/rest operator
| ├── Arrow functions
| ├── Classes
| ├── let and const
| ├── Default parameters
| ├── Modules
| └── Promises
|
|── Web APIs
| ├── Local Storage
| ├── Session Storage
| └── Web Storage API
|
|── Libraries and Frameworks
| ├── React
| ├── Angular
| └── Vue.js
||── Debugging
| ├── Console.log()
| ├── Breakpoints
| └── DevTools
|
|── Others
| ├── Closures
| ├── Callbacks
| ├── Prototypes
| ├── this keyword
| ├── Hoisting
| └── Strict mode
|
| END __
4 776
+6
JavaScript features you might not know! These 6 features were released in ECMAScript 2023 in June 2023.
Today we cover some of the new array methods released in JavaScript 2023 in order to make manipulating arrays easier.
4 776
Repost from Python
🔅 Python Functions for Data Science
🌐 Author: Lavanya Vijayan
🔰 Level: Intermediate
⏰ Duration: 1h 30m
🌀 Save time, and make your code more readable and reusable, by learning the most powerful Python functions for data science.📗 Topics: Data Analysis, Python 📤 Join Learn Python for more courses
4 776
🔰 SASS - The Complete SASS Course (CSS Preprocessor)
🌟 4.6 - 2301 votes 💰 Original Price: $69.99
📖 SASS - Learn SASS, the most popular CSS Extension. Build modern and beautiful projects using SASS and lots of CSS🔊 Taught By: Code And Create, George Lomidze 📤 Download Full Course 📤 Download All Courses
4 776
🔅 Learning Vue.js
🌐 Author: Michael Sullivan
🔰 Level: Intermediate
⏰ Duration: 1h 41m
🌀 Discover how Vue.js can help you build powerful and performant user interfaces while simplifying your JavaScript code. Find out why front-end developers love this framework.📗 Topics: Vue.js 📤 Join Learn JavaScript for more courses
4 776
🔅 Machine Learning with Scikit-Learn
🌐 Author: Michael Galarnyk
🔰 Level: Advanced
⏰ Duration: 43m
🌀 Learn to use scikit-learn, the popular open-source Python library, to build efficient machine learning models.📗 Topics: Scikit-Learn, Machine Learning 📤 Join Machine Learning and Artificial intelligence for more courses
4 776
🔅 Ethical Hacking: Scanning Networks
🌐 Author: Lisa Bock
🔰 Level: Intermediate
⏰ Duration: 2h 15m
🌀 Become an ethical hacker. Learn how to detect network vulnerabilities to prevent attacks on your organization's infrastructure and data.📗 Topics: Network Monitoring Tools, Ethical Hacking 📤 Ethical Hacking et Cybersecurity
4 776
🔵 Wedges: A Collection of UI Components for React
Built and used by the folks at Lemon Squeezy, this is a well thought, aesthetically pleasing set of Radix UI and Tailwind CSS based components.
You can also download a Figma file of them to use when mocking up layouts
🔗 Link to the collection
#react #components #tailwindcss #radixui
4 776
🔅 Building a GraphQL Project with React.js
🌐 Author: Ray Villalobos
🔰 Level: Intermediate
⏰ Duration: 2h 16m
🌀 Learn how to combine querying techniques in GraphQL and a popular framework in React, then add GitHub, so you can see what youre doing easily.📗 Topics: GraphQL, React.js 📤 Join Learn React and NextJs for more courses
4 776
🔅 Dynamic Routes in Next.js
Dynamic routes in Next.js (like [productId] or [blogSlug]) allow flexible URLs for various content types (products, blog posts, etc.) with data access through useRouter for a smooth user experience.
4 776
🔵 Getting Your Codebase Ready for React 19
Is your app ready for what’s coming up in React 19’s release?
A quick look at some of the anticipated changes so far.
🔗 Link to the article
4 776
+6
🔵 Different Ways to Fetch Data in React JS
Understanding how to fetch data into React applications is mandatory for every React developer who aims to build modern, real-world web applications 👨💻
