EvoNext
1.79K subscribers
272 photos
16 videos
266 files
484 links
Download Telegram
Python Materials πŸ‘‡πŸ‘‡
Forwarded from Mohammed Nebil
think-python-2nd.pdf
4.2 MB
JAVASCRIPT AND JQUERY MATERIALS TEXTBOOK AND REFERENCE
EvoNext pinned Β«Which programming language do you wanna learn here?Β»
Forwarded from Welde Janfa
❀2
JavaScript Reference Book: JAVASCRIPT: THE INTERNET PROGRAMMING WARRIOR Full JavaScript Tutorial
πŸ‘2
EvoNext
Which programming language do you wanna learn here?
πŸ‘‹πŸΏHello Everyone!❀️ As you choose to get tutors from our channel, we have prepared everything to start JS tutors next days.
✳️This tutor is simple and easy to understand as you always check yourself what you learned here.
πŸ“ŒYou need to prepare to get lessons and 🫡don't forget to join and share for your classmates,,πŸ€™πŸ»
say hi on > @fightAgainNow || @LearnToCode_bot
>next tutorials are loading...
πŸ«€ThanksπŸ«€
πŸ‘5πŸ™1
(Javascript)✳️ LESSON 1: VARIABLES AND STATEMENTSπŸ’»
> JS Variables are containers for storing information.
JavaScript statements often start with a statement identifier to identify the JavaScript action to be performed.

> JS Statement identifiers are reserved words and cannot be used as variable names (or any other things).
Eg:- break, class, const, let, for , var ,,....etc


❓HOW DO WE DECLARE AND INITIALIZE iN JS?⁉️

LET:_ The let declaration declares a block-scoped local variable, optionally initializing it to a value.

// Create a variable to store the city
let city = 'Philadelphia'
// Create a variable to store the state
let state = 'Pennsylvania'
// Create a variable to combine the city and state
let location = city + ', ' + state
// Print the combined location to the terminal( console)
console.log(location)

Example 2:_ Let's strore numbers

// Create a number and assign to a variable
let age = 26
// Add
let addResult = age + 1
// 27
// Subtract
let subtractResult = age - 26.5
// Multiply
let multiplyResult = age * 10
// Divide
let divideResult = age / 2
// -0.5
// 260
// 13
// Parenthesis can be used to make sure

⛔️Note that JS comments allow you tp document your code. The content of your comment id for human only.
//look the above comment lines like this

Question for you??⁉️⁉️

What are the other key words used to declare variables in JS other than LET??
[ comment your answer below ]
πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡πŸ‘‡
OUR CHANNEL :_ AlgoMasters Join and share now!!
OUR GROUP:_ Algo Programmers discuss here
OUR BOT:_ HELLO_AlgoMasters
πŸ‘†πŸ‘†πŸ‘†πŸ‘†πŸ‘†πŸ‘†πŸ‘†πŸ‘†πŸ‘†πŸ‘†πŸ‘†
lessons continues...
πŸ”₯3πŸ‘1
EvoNext pinned Β«(Javascript)✳️ LESSON 1: VARIABLES AND STATEMENTSπŸ’» > JS Variables are containers for storing information. JavaScript statements often start with a statement identifier to identify the JavaScript action to be performed. > JS Statement identifiers are…»
πŸ‘Ž3πŸ‘2🌚2❀‍πŸ”₯1🫑1
Online training opportunity for beginners on Python?

You will need a computer, a good Internet connection, and great focus to get through this 3 days training, and get a certification!

Registration ends November 29th at 11:00 AM GMT+3

Register here: https://docs.google.com/forms/d/e/1FAIpQLSc4477eCM-l1A6g568SI4isL6639i4oFFkCiXiETJlwpA8V_A/viewform?usp=share_link

#ODC #Orange #OrangeDigitalCenter #OrangeDigitalCenterEthiopia #Ethiopia #ODCEthiopia #CodingSchool #Software #Softwaredevelopment #OrangeFabET #Accelerator #ecosystem #fablab #womenintech #FabLabSolidaire
Federal Ministry for Economic Cooperation and Development (BMZ)
Invest for Jobs – Special Initiative on Training and Job Creation
Deutsche Gesellschaft fΓΌr Internationale Zusammenarbeit (GIZ) GmbH
Orange
✳️LESSON 2 : Booleans and Comparison Operators

πŸ“The Boolean object represents a truth value: true or false.
πŸ“ŒAny object, including a Boolean object whose value is false, evaluates to true when passed to a conditional statement.

for More click here "Boolean Β«πŸ“₯

βœ…A comparison operator compares its operands and returns a boolean value based on whether the comparison is true.
⚽️These are >= , <= , = ,!= ...etc
@the operators can categorized as follows

+ Primary expressions
+ Left-hand-side expressions
+ Increment and decrement operations
+ Unary Operators
+ Arithmetic Operators
+ Relational Operators
+ Equality Operators
+ Bitwise Shift Operators
+ Binary bitwise operators
+ Binary bitwise operators
+ Binary logical operators . ..... etc

Eg;_ with different operator types

// === equal
'Andrew' === 'Andrew' // True
'Mike' === 'mike' // False
// !== not equal
'Andrew' !== 32 // True
12 !== 12 // False
// < less than
3 < 40 // True
3 < 3 // False
// <= less than or equal to
// 3 <= 3 // True
// 0 <= -23 // False
// > greater than
16 > -16 // True
-16 > 16 // False
// >= greater than or equal to
-23 >= -40 // True
100 => -100 // False

LESSON 3:IF and Advanced IF statements

⚾️if...else

The if...else statement executes a statement if a specified condition is truthy. If the condition is falsy, another statement in the optional else clause will be executed.

function testNum(a) {
let result;
if (a > 0) {
result = 'positive';
} else {
result = 'NOT positive';
}
return result;
}

console.log(testNum(-5));
// expected output: "NOT positive"
more on >πŸ‘‰ IF MDN πŸ“₯Β»CLICK ME

FOR FREE VIDEO :_ shorturl.at/dkmX8
πŸ‘2
EvoNext pinned «✳️LESSON 2 : Booleans and Comparison Operators πŸ“The Boolean object represents a truth value: true or false. πŸ“ŒAny object, including a Boolean object whose value is false, evaluates to true when passed to a conditional statement. for More click here "Boolean…»
Python has 🐍
PHP has 🐘

What's your emoji for JavaScript?

JOIN GROUP FOR MORE diSCUSSION:_http://t.me/learntocodecpp

take quize on JS: http://t.me/QuizBot?start=QOvqrpOK
πŸŽ‰2😁1πŸ•Š1🀑1
C++_In_One_Day_The_Ultimate_Beginners_Guide_To_C++_With_7_Awesome.pdf
336.6 KB
Book content: Cpp projects and basics
File size:
337 kB only

OUR CHANNEL :_ AlgoMasters Join and share now!!
OUR GROUP:_ Algo Programmers discuss here
OUR BOT:_ HELLO_AlgoMasters
❀3πŸ‘2
Forwarded from Mohammed Nebil
❀2πŸ‘1