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
Paul Deitel, Harvey Deitel - C++ 9e How to Program.pdf
14 MB
This #c++ book is often recommended by Lecturers;๐ค
๐ฑ๐ฑ๐ฑ๐ฑ๐ฑ๐ฑ๐ฑ๐ฑ๐ฑ
file size: 13.9 MB; ๐ช
โณ๏ธโณ๏ธโณ๏ธโณ๏ธโณ๏ธโณ๏ธโณ๏ธโณ๏ธ
share and join ๐ฅ
๐ฑ๐ฑ๐ฑ๐ฑ๐ฑ๐ฑ๐ฑ๐ฑ๐ฑ
file size: 13.9 MB; ๐ช
โณ๏ธโณ๏ธโณ๏ธโณ๏ธโณ๏ธโณ๏ธโณ๏ธโณ๏ธ
share and join ๐ฅ
๐3๐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.โฆ
[javascript]๐LESSON 6: Object Basics๐ฆ
โณ๏ธ It is one the data types in javascript. It is used to store various keyed collections and more complex entities.
๐Object prototype properties
And there are many static methods used to increase the functionality of an object
๐ซOBJECTS WITH FUNCTIONS๐
โ๏ธObjects can be used as Function arguments
๐ฅgetSummary(myBook);
โ๏ธObjects as Function Return Values
๐
For more Comments :> @fightAgainNow
Share and Join > A L G O M A S T E R S
let's end this lesson and THIS is my gift 4U ๐น๐ฅ๐ท
โณ๏ธ It is one the data types in javascript. It is used to store various keyed collections and more complex entities.
const obj = {
property1: value1, // property name may be an identifier2: value2, // or a number "property n": value3, // or a string};๐ฅYou can create a new object by opening and closing curly braces. Below is an object with three properties ; title, author , and page count;
let myBook = {
title: '1984',
author: 'George Orwell',
pageCount: 326
}
โ๏ธ [ RUN ] โ๏ธ๐Object prototype properties
myBook.valueOf() // show everything inside {}myBook.hasOwnProperty("p")//return boolean valueAnd there are many static methods used to increase the functionality of an object
๐ซOBJECTS WITH FUNCTIONS๐
โ๏ธObjects can be used as Function arguments
๐ฅgetSummary(myBook);
โ๏ธObjects as Function Return Values
๐
let convertFahrenheit = function (fahrenheit) {
return {
fahrenheit: fahrenheit,
kelvin: (fahrenheit + 459.67) * (5 / 9),
celsius: (fahrenheit - 32) * (5 / 9)
}
}
let temps = convertFahrenheit(74)
console.log(temps)
โ๏ธ [ RUN ] โ๏ธFor more Comments :> @fightAgainNow
Share and Join > A L G O M A S T E R S
let's end this lesson and THIS is my gift 4U ๐น๐ฅ๐ท
โค4๐1๐ฅฐ1
Free Resources to learn SQL
๐๐ป๐๐ป
Modesql: https://mode.com/sql-tutorial/introduction-to-sql
kudavenkat playlist (first 16): https://www.youtube.com/playlist?list=PL08903FB7ACA1C2FB
SQL Cheatsheet
https://www.sqltutorial.org/wp-content/uploads/2016/04/SQL-cheat-sheet.pdf
khanacademy SQL course: https://www.khanacademy.org/computing/computer-programming/sql
SQL Book for Beginners
https://t.me/learndataanalysis/36
Practice sql (Very Important)
https://leetcode.com/problemset/database/
https://www.hackerrank.com/domains/sql
https://www.windowfunctions.com/
https://www.sql-practice.com/
ENJOY LEARNING ๐๐
JOIN and SHARE
> https://t.me/+2GT8wMCrJpQyMDFk
๐๐ป๐๐ป
Modesql: https://mode.com/sql-tutorial/introduction-to-sql
kudavenkat playlist (first 16): https://www.youtube.com/playlist?list=PL08903FB7ACA1C2FB
SQL Cheatsheet
https://www.sqltutorial.org/wp-content/uploads/2016/04/SQL-cheat-sheet.pdf
khanacademy SQL course: https://www.khanacademy.org/computing/computer-programming/sql
SQL Book for Beginners
https://t.me/learndataanalysis/36
Practice sql (Very Important)
https://leetcode.com/problemset/database/
https://www.hackerrank.com/domains/sql
https://www.windowfunctions.com/
https://www.sql-practice.com/
ENJOY LEARNING ๐๐
JOIN and SHARE
> https://t.me/+2GT8wMCrJpQyMDFk
โค2๐ฅฐ1
Coding Projects in Python_compressed.pdf
6.9 MB
๐๐๐๐๐๐๐๐๐๐๐
๐๐A Book for python with projectsโณ๏ธ
๐๐๐๐๐๐๐๐๐๐๐
file size: 6.9 MB only
credit: Tech 21
share and join [ AlgoMasters ];
Good night!๐๐๐โค๏ธ
๐๐A Book for python with projectsโณ๏ธ
๐๐๐๐๐๐๐๐๐๐๐
file size: 6.9 MB only
credit: Tech 21
share and join [ AlgoMasters ];
Good night!๐๐๐โค๏ธ
๐3๐ฅฐ2
แฅแแณแ แแขแจแฑแต แญแญแตแถแต แจแแฐแต แ แแ แ แฐแจแณแฝแ!!
๐๐๐๐๐๐๐๐๐
แ แแแ แแแณแจแฅแฉ แ แแ แแแซแ แ แแ แฅแแแแแแข
๐ง๐พโ๐๐ ๐ฝ๐ง๐พโ๐๐ ๐ฝ๐ง๐พโ๐๐ ๐ฝ๐ง๐พโ๐๐ ๐ฝ
Merry Ethiopian Christmas!!
๐๐๐๐๐๐๐๐๐
แแแซแ แ แแ!!
โ๏ธโ๏ธโ๏ธโ๏ธโ๏ธโ๏ธโ๏ธโ๏ธ
> https://t.me/+txk6Ik_UwGc4ZGM0
๐๐๐๐๐๐๐๐๐
แ แแแ แแแณแจแฅแฉ แ แแ แแแซแ แ แแ แฅแแแแแแข
๐ง๐พโ๐๐ ๐ฝ๐ง๐พโ๐๐ ๐ฝ๐ง๐พโ๐๐ ๐ฝ๐ง๐พโ๐๐ ๐ฝ
Merry Ethiopian Christmas!!
๐๐๐๐๐๐๐๐๐
แแแซแ แ แแ!!
โ๏ธโ๏ธโ๏ธโ๏ธโ๏ธโ๏ธโ๏ธโ๏ธ
> https://t.me/+txk6Ik_UwGc4ZGM0
๐5๐1๐ฅฐ1
- what programming languages should i learn ?
- Top 20 programming languages
<check this> https://youtu.be/BdNDCW6aP4w </check>
โก ใ ค โใ ค โฒ ๐
หกแถฆแตแต หขแตแตแต หขสฐแตสณแต unmute
- Top 20 programming languages
<check this> https://youtu.be/BdNDCW6aP4w </check>
โก ใ ค โใ ค โฒ ๐
หกแถฆแตแต หขแตแตแต หขสฐแตสณแต unmute
๐ฑ1
โผ๏ธ๐๐โผ๏ธ๐
๐ W3schools.com for coders
๐ Academy.hubspot.com for marketers
๐ Learnux.io for UX designers
๐web.dev for Web Designers
โก ใ ค โใ ค โฒ ๐
หกแถฆแตแต หขแตแตแต หขสฐแตสณแต unmute
๐ W3schools.com for coders
๐ Academy.hubspot.com for marketers
๐ Learnux.io for UX designers
๐web.dev for Web Designers
โก ใ ค โใ ค โฒ ๐
หกแถฆแตแต หขแตแตแต หขสฐแตสณแต unmute
๐3
Data structures-6.pdf
875.1 KB
๐ซฑ๐ซฑData structure ๐ฅ
File size: 875.0 kB
Content: All DSA
SHARE ITโณ๏ธ๐
We are coming with youtube Contents: Like the video๐uploaded : subcribe us ๐ซต
<check this> https://youtu.be/BdNDCW6aP4w </check>
โก ใ ค โใ ค โฒ ๐
หกแถฆแตแต หขแตแตแต หขสฐแตสณแต unmute
File size: 875.0 kB
Content: All DSA
SHARE ITโณ๏ธ๐
โก ใ ค โใ ค โฒ ๐
หกแถฆแตแต หขแตแตแต หขสฐแตสณแต unmute
๐4
Forwarded from Front End Development
HTML5 โ From Basics to Advanced level [2022]
FREE For Limited Enrolls
A beginner's guide for HTML5. Learn all concepts of HTML5 (with hands-on assignments
https://coursevania.com/courses/html5-from-basics-to-advanced-level-2020/
FREE For Limited Enrolls
A beginner's guide for HTML5. Learn all concepts of HTML5 (with hands-on assignments
https://coursevania.com/courses/html5-from-basics-to-advanced-level-2020/
CourseVania
HTML5 โ From Basics to Advanced level [2023] โ CourseVania
****UPDATE [01-Jan-2022]: New Content Added โ HTML5 !!!!!**** 20 NEW videos added New Sections on: Forms Embedding Multimedia Vector Graphics And a Final Project! ************************************************************ Are you a beginner? Do you wantโฆ