Telegram Group & Telegram Channel
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 __



tg-me.com/webdevcoursefree/2491
Create:
Last Update:

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 __

BY Web Development


Warning: Undefined variable $i in /var/www/tg-me/post.php on line 283

Share with your friend now:
tg-me.com/webdevcoursefree/2491

View MORE
Open in Telegram


Web Development Telegram | DID YOU KNOW?

Date: |

Spiking bond yields driving sharp losses in tech stocks

A spike in interest rates since the start of the year has accelerated a rotation out of high-growth technology stocks and into value stocks poised to benefit from a reopening of the economy. The Nasdaq has fallen more than 10% over the past month as the Dow has soared to record highs, with a spike in the 10-year US Treasury yield acting as the main catalyst. It recently surged to a cycle high of more than 1.60% after starting the year below 1%. But according to Jim Paulsen, the Leuthold Group's chief investment strategist, rising interest rates do not represent a long-term threat to the stock market. Paulsen expects the 10-year yield to cross 2% by the end of the year. A spike in interest rates and its impact on the stock market depends on the economic backdrop, according to Paulsen. Rising interest rates amid a strengthening economy "may prove no challenge at all for stocks," Paulsen said.

How Does Telegram Make Money?

Telegram is a free app and runs on donations. According to a blog on the telegram: We believe in fast and secure messaging that is also 100% free. Pavel Durov, who shares our vision, supplied Telegram with a generous donation, so we have quite enough money for the time being. If Telegram runs out, we will introduce non-essential paid options to support the infrastructure and finance developer salaries. But making profits will never be an end-goal for Telegram.

Web Development from us


Telegram Web Development
FROM USA