Forwarded from Mohammed Nebil
Internet_and_World_Wide_Web_How_to_Program_Paul_&_Harvey_Deitel.pdf
49.9 MB
π2
Forwarded from Welde Janfa
_Julie_Meloni,_Jennifer_Kyrnin_HTML,_CSS,_and_JavaScript_All_in.pdf
12.9 MB
Use this as second text book
Javascript_and_jquery_interactive_jon_duckett.pdf
91.5 MB
The other duckett book for reading
β€2
JavaScript Reference Book: JAVASCRIPT: THE INTERNET PROGRAMMING WARRIOR Full JavaScript Tutorial
π2
Forwarded from Mohammed Nebil
JAVASCRIPT - THE INTERNET PROGRAMMING WEB WARRIOR SERIES.pdf
59.7 MB
π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π«
β³οΈ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
π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
// Create a number and assign to a variable
// Subtract
// 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??
[
ππππππππππ
OUR CHANNEL :_ AlgoMasters Join and share now!!
OUR GROUP:_ Algo Programmers discuss here
OUR BOT:_ HELLO_AlgoMasters
πππππππππππ
lessons continues...
> 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
β
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
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
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:
π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
/
βΎοΈ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.
FOR FREE VIDEO :_ shorturl.at/dkmX8
π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 MEFOR FREE VIDEO :_ shorturl.at/dkmX8
π2
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
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 basicsFile 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
π»π₯4 Free and Low-Cost Online Resources for Practicing Codeπβ³οΈ
1. TheCodePlayer:
link: http://thecodeplayer.com/
Β» β€οΈThis a web-based way to sharpen your coding skills by viewing screencasts from other coders. No account or log-in is needed; just visit the site and pick a category to begin watching or streaming a video.
2. CheckiO:
link: https://checkio.org
Β»βΌοΈIf youβve ever wanted to create a video game from scratch, this is a great way to get some practice in. CheckiO offers game coding practice for coders of all levels, and coders can practice either Python or JavaScript.
3. CodinGame:
link : http://codingame.com
Β»β CodinGame is another great way to practice your coding skills by creating video games. Their website boasts that users can create games in the programming language of their choice, including Java, JavaScript, Python, Swift, Kotlin, Scala, PHP, Bash, C, C++, C#, Ruby, Perl, and many others.
4. Simplilearn:
link: https://www.simplilearn.com/mobile-and-software-development/
Β»π₯ Labs and projects are included in Simplilearnβs Advanced Java, Core Java, Python, C#, Scala, Perl, Ruby on Rails, C, Advanced CSS, CSS3 Fundamentals, Data Science with R, Data Science with Python, and many other certification training courses.
ππππππππππ
π JOIN AND SHARE NOW π
π AlgoMasters π
ππππππππππ
1. TheCodePlayer:
link: http://thecodeplayer.com/
Β» β€οΈThis a web-based way to sharpen your coding skills by viewing screencasts from other coders. No account or log-in is needed; just visit the site and pick a category to begin watching or streaming a video.
2. CheckiO:
link: https://checkio.org
Β»βΌοΈIf youβve ever wanted to create a video game from scratch, this is a great way to get some practice in. CheckiO offers game coding practice for coders of all levels, and coders can practice either Python or JavaScript.
3. CodinGame:
link : http://codingame.com
Β»β CodinGame is another great way to practice your coding skills by creating video games. Their website boasts that users can create games in the programming language of their choice, including Java, JavaScript, Python, Swift, Kotlin, Scala, PHP, Bash, C, C++, C#, Ruby, Perl, and many others.
4. Simplilearn:
link: https://www.simplilearn.com/mobile-and-software-development/
Β»π₯ Labs and projects are included in Simplilearnβs Advanced Java, Core Java, Python, C#, Scala, Perl, Ruby on Rails, C, Advanced CSS, CSS3 Fundamentals, Data Science with R, Data Science with Python, and many other certification training courses.
ππππππππππ
π JOIN AND SHARE NOW π
π AlgoMasters π
ππππππππππ
π₯2π1
EvoNext
β³οΈ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β¦
LESSON 4: FUNCTIONS IN JAVASCRIPT
There are three important pieces to create a function:
π‘ 1. Arguments - they are values passed into a function. if i create a function that validates an email, I'd need to accept the email as a function argument.
π» 2. Function Code- the function code is what goes inside of the curly braces. This is where you define what your function does.
π₯3. Return Value - This is a part of the function code. It lets you define what value to send back to the function caller.
π€³π€³ππΌππΌ
Let's see the snippet using a function #[
LESSON 5: null and undefined in JS
π₯The null value represents the intentional absence of any object value.
πThe global undefined property represents the primitive value undefined. It is one of JavaScript's primitive types.
more on:-
Null - undefined -
πππππππππππππ ππ π
π JOIN AND SHARE NOW π
π AlgoMasters π
π Donald trump teaches you here π
πππππππππ ππππ πππ
There are three important pieces to create a function:
π‘ 1. Arguments - they are values passed into a function. if i create a function that validates an email, I'd need to accept the email as a function argument.
π» 2. Function Code- the function code is what goes inside of the curly braces. This is where you define what your function does.
π₯3. Return Value - This is a part of the function code. It lets you define what value to send back to the function caller.
π€³π€³ππΌππΌ
Let's see the snippet using a function #[
fahrenheitToCelsius]#| RUN | | COMPILE |
let fahrenheitToCelsius = function (fahrenheit) {
const celsius = (fahrenheit - 32) * (5 / 9)
return celsius
}
let temp70 = fahrenheitToCelsius(70)
console.log(temp70)
let temp32 = fahrenheitToCelsius(32)
console.log(temp32)
LESSON 5: null and undefined in JS
π₯The null value represents the intentional absence of any object value.
πThe global undefined property represents the primitive value undefined. It is one of JavaScript's primitive types.
more on:-
Null - undefined -
πππππππππππππ ππ π
π JOIN AND SHARE NOW π
π AlgoMasters π
π Donald trump teaches you here π
πππππππππ ππππ πππ
Programiz
Online JavaScript Compiler (Editor) - Programiz
Write and run your JavaScript code using our online compiler. Enjoy additional features like code sharing, dark mode, and support for multiple programming languages.
π1π₯°1π1