โณ๏ธ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
EvoNext
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.โฆ
AlgoMasters-Jsfunctions.pdf
87.9 KB
content: javascript function basics
size: 88 kB only
prepared by: AlgoMasters PLC ๐
size: 88 kB only
prepared by: AlgoMasters PLC ๐
๐3๐ฅ2๐1
Searching&&SortingIN_c++.pdf
2 MB
Title:โ
_ #searching and sorting /DSA/
file_size: ๐ณ๐ฎ #2.0 MB
language: #c++
join ยปhttps://t.me/+txk6Ik_UwGc4ZGM0
๐ _#Data structure and #algorithm_๐
file_size: ๐ณ๐ฎ #2.0 MB
language: #c++
join ยปhttps://t.me/+txk6Ik_UwGc4ZGM0
๐ _#Data structure and #algorithm_๐
๐4๐ฅ1
Q1[Javascript]: Why do we write functions?
Anonymous Quiz
12%
Make our code reusable
10%
Avoid writing repeated code
8%
Make our code easier to understand
71%
All of these
๐6๐1
Q2[ Javascript]: The_______ relational operation means "is not equal to."
Anonymous Quiz
4%
:=
20%
=!
3%
@=
72%
!=
๐9๐จโ๐ป3๐ค1
Q3[ Javascript]: NULL is a data type whose value is not initialized.
Anonymous Quiz
43%
False
57%
True
๐6๐1
JavaProjectIdea101.pdf
1.2 MB
"Development of Java Applications in Eclipse
Environment and Development of Java Based Calendar
Application with ๐ฉ Email Notifications"
-This sample of java project may help you;
File size: 1.2MB;
join and share๐ฅ๐
for More:- https://t.me/LearnToCode_bot
Environment and Development of Java Based Calendar
Application with ๐ฉ Email Notifications"
-This sample of java project may help you;
File size: 1.2MB;
join and share๐ฅ๐
for More:- https://t.me/LearnToCode_bot
๐ฅฐ1
Newtworking_AlgoMasters.pdf
79.6 KB
This pdf may help you revise your #networking course..
file size : 80 KB only;
contents: exercises with answer key;
prepared by: AlgoMasters PLC. ๐ ๐ช
#JavaScript #tutorial continues....
file size : 80 KB only;
contents: exercises with answer key;
prepared by: AlgoMasters PLC. ๐ ๐ช
#JavaScript #tutorial continues....
๐4๐2