Skip to content

Commit 416e4ae

Browse files
committed
initial commit
0 parents  commit 416e4ae

23 files changed

+1018
-0
lines changed

00-introduction.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log('Welcome JavaScript');

01-variables.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// Declaring different variables of different data types
2+
let firstName = "Asabeneh";
3+
let lastName = "Yetayeh";
4+
let location = "Helsinki";
5+
const country = "Finland";
6+
let age = 100;
7+
let isMarried = true;
8+
const gravity = 9.81;
9+
const boilingPoint = 100;
10+
const PI = 3.14;
11+
console.log(firstName, lastName, location, country, age, gravity, PI);
12+
13+
// Variables can also be declaring in one line separated by comma
14+
let name = "Asabeneh",
15+
job = "Teacher",
16+
live = "Finland";
17+
console.log(name, job, live)
18+

02-comment.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
//Commenting in JavaScript
2+
//There is is two way ways of commenting JavaScript:single line and multiline comment
3+
4+
//1.Signle line comment
5+
// let firstName = "Asabeneh";
6+
// let lastName = "Yetayeh";
7+
// let location = "Helsinki";
8+
//2.Multiple line comment
9+
/*
10+
const country = "Finland";
11+
let age = 100;
12+
let isMarried = true;
13+
const gravity = 9.81;
14+
const PI = 3.14;
15+
*/

03-concationation.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Declaring different variables of different data types
2+
let firstName = "Asabeneh";
3+
let lastName = "Yetayeh";
4+
let fullName = firstName + " " + lastName; // concatination, merging to string together.
5+
console.log(fullName);
6+
7+
8+
var personInfoOne = fullName + ".I am " + age + ". I live in " + country; // ES5
9+
var personInfoTwo = `I am ${fullName}.I am ${age}. I live in ${country}`; //ES6 - String interpolation method
10+
console.log(personInfoOne);
11+
console.log(personInfoTwo);

04-string_interpolation.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
let firstName = "Asabeneh";
2+
let letlastName = "Yetayeh";
3+
var age = 200; // number data type
4+
var country = "Finland";
5+
var job = 'teacher';
6+
let lang = 'JavaScript'
7+
var personInfo = `I am ${fullName}.I am a ${age} years old. I am a ${job} and I love teaching.
8+
I live in ${country}.`; //ES6 - String interpolation method
9+
console.log(personInfo);
10+
11+
let numberOne = 10;
12+
let numberTwo = 90;
13+
console.log(`The sum of ${numberOne} and ${numberTwo} is ${numberOne + numberTwo}.`);
14+
15+
16+

05-numbers.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
let age = 35;
2+
let gravity = 9.81;
3+
let PI = 3.14;
4+
let temperature = 37;
5+
const boilingPoint = 100;
6+
console.log(age);
7+
console.log(gravity);
8+
console.log(PI);

05-string-method.js

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/*
2+
=== String Built in Methods ===
3+
*/
4+
let firstName = "Asabeneh";
5+
let lastName = "Yetayeh";
6+
let location = "Helsinki";
7+
console.log(firstName.length); // to check the length of a string
8+
console.log(firstName.toUpperCase()); // to capitalize
9+
console.log(firstName.toLowerCase()); // to change to lower case letters
10+
11+
let company = 'google'
12+
13+
var firstLetter = company.slice(0, 1); // to slice out the first letter of the word
14+
var remainingLetters = company.slice(1, company.length);
15+
console.log(firstLetter);
16+
console.log(remainingLetters);
17+
var modifiedName = firstLetter.toUpperCase() + remainingLetters;
18+
console.log(modifiedName);
19+
var school = "International Academy Award";
20+
console.log(school.split()); // creates an array of one item
21+
console.log(school.split("")); // it creates an array of letters and spaces;
22+
console.log(school.split(" ")); // creates an array of words
23+
console.log(school.indexOf("A")); // gives the index of the A in the string which is case sensitive
24+
console.log(school.lastIndexOf("A")); //the last A, which is A from the word Award
25+
console.log(school.includes("rify")); // it checks if the string exist and returns boolean
26+
console.log(school.includes("Award")); // it checks if the string exist and returns boolean
27+
console.log(school.includes("demy")); // it checks if the string exist and returns boolean
28+
console.log(school.startsWith("Inter")); // checks if the string starts with the provided value and returns boolean
29+
30+
var modifiedSchool = school.split(" ");
31+
console.log(modifiedSchool);

06-arthimetic_operators.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
let numOne = 4;
2+
let numTwo = 3;
3+
4+
let sum = numOne + numTwo;
5+
let diff = numOne - numTwo;
6+
let mult = numOne * numTwo;
7+
let div = numOne / numTwo;
8+
let remainder = numOne % numTwo;
9+
10+
console.log(sum);
11+
console.log(diff);
12+
console.log(mult);
13+
console.log(div);
14+
console.log(remainder)

07-boolean.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
let isRaining = false;
2+
let hungery = false;
3+
let isMarried = true;

08-template_literals.js

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
let templateLiteralString = `String literals
2+
is a very handy way to write strings.`

09-typeof.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/*
2+
=== Checking Data types ===
3+
*/
4+
console.log (typeof firstName); // it gives string
5+
console.log (typeof age); // it gives number
6+
console.log (typeof firstName === 'string'); // returns true
7+
console.log (typeof age === 'number'); // returns true

10-if.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
//if
2+
let isRaining = true;
3+
if (isRaining) {
4+
console.log("Remember to take your rain coat.");
5+
}

11-ifelse.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
//if else
2+
if (isRaining) {
3+
console.log("It is raining. You need a rain coat.");
4+
} else {
5+
console.log("It is not raining. No need for rain coat.");
6+
}

12-if-else-if-else.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// if else if else
2+
let weather = 'sunny';
3+
if (weather === "rainy") {
4+
console.log("It is raining. You need a rain coat.");
5+
} else if (weather === "cloudy") {
6+
console.log("It might be cold you need a jacket.");
7+
} else if (weather === "sunny") {
8+
console.log("Go out freely.");
9+
} else {
10+
console.log("It is not raining. No need for rain coat.");
11+
}

14-switch.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Switch
2+
var weather = "cloudy";
3+
switch (weather) {
4+
case "rainy":
5+
console.log("It is raining. You need a rain coat.");
6+
break;
7+
case "cloudy":
8+
console.log("It might be cold you need a jacket.");
9+
break;
10+
case "sunny":
11+
console.log("Go out freely.");
12+
break;
13+
default:
14+
console.log("It is not raining. No need for rain coat.");
15+
break;
16+
}

15-ternary-operator.js

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
let isRaining = true;
2+
isRaining ? console.log("You need a rain coat.") : console.log("No need for a rain coat.");

16-array.js

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
const webTechs = [
2+
"HTML",
3+
"CSS",
4+
"JavaScript",
5+
"React",
6+
"Redux",
7+
"Node",
8+
"MongoDB"
9+
];
10+
const countries = [
11+
"Albania",
12+
"Bolivia",
13+
"Canada",
14+
"Denmark",
15+
"Ethiopia",
16+
"Finland",
17+
"Germany",
18+
"Hungary"
19+
];
20+
const numbers = [0, 3.14, 9.81, 37, 98.6, 100];
21+
const shoppingCart = [
22+
"Milk",
23+
"Mango",
24+
"Tomato",
25+
"Potato",
26+
"Avocado",
27+
"Meat",
28+
"Eggs",
29+
"Sugar"
30+
];
31+
console.log(webTechs);
32+
console.log(webTechs.length); // => to know the size of the array, which is 7
33+
console.log(webTechs[0]); //--> HTML;
34+
console.log(webTechs[webTechs.length - 1]); //--> MongoDB
35+
console.log(countries);
36+
console.log(numbers);
37+
console.log(shoppingCart);

17-forloop.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
for (var i = 1; i <= 10; i++) {
2+
console.log(`${i}x${i}=${i * i}`);
3+
}

18-whileloop.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
var i = 0;
2+
while (i <= 10) {
3+
console.log(`${i}x${i}=${i * i}`);
4+
i++;
5+
}

19-dowhileloop.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// do while
2+
var j = 11;
3+
do {
4+
console.log(`${j}x${j}=${j * j}`);
5+
j++;
6+
} while (j <= 10);

20-functions.js

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
// function without parameters
2+
function addTwoNumbers() {
3+
var numOne = 10;
4+
var numTwo = 20;
5+
var sum = numOne + numTwo;
6+
console.log(sum);
7+
}
8+
addTwoNumbers(); // function has to be called to be executed
9+
// Function without parater doesn' take input, so lets make a parameter with parameter
10+
function sumTwoNumbers(numOne, numTwo) {
11+
var sum = numOne + numTwo;
12+
console.log(sum);
13+
}
14+
sumTwoNumbers(10, 20); // calling functions
15+
// If a function doesn't return it doesn't store data, so it should return
16+
function sumTwoNumbersAndReturn(numOne, numTwo) {
17+
var sum = numOne + numTwo;
18+
return sum;
19+
}
20+
console.log(sumTwoNumbersAndReturn(10, 20));
21+
function printFullName(firstName, lastName) {
22+
return `${firstName} ${lastName}`;
23+
}
24+
console.log(printFullName("Asabeneh", "Yetayeh"));
25+
console.log(printFullName("Dean", "Phan"));
26+
27+
function square(number) {
28+
return number * number;
29+
}
30+
console.log(square(10));
31+
32+
// this function takes array as a parameter and sum up the numbers in the array
33+
function sumArrayValues(arr) {
34+
var sum = 0;
35+
for (var i = 0; i < arr.length; i++) {
36+
sum = sum + numbers[i];
37+
}
38+
return sum;
39+
}
40+
const numbers = [1, 2, 3, 4, 5];
41+
console.log(sumArrayValues(numbers));
42+
43+
44+
45+
46+
47+

index.html

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<title>JavaScript for Everyone</title>
6+
<!--
7+
JavaScript code can be written in the head or the body. But it is preferable at the body
8+
<script src="./variables.js">
9+
</script> -->
10+
</head>
11+
12+
<body>
13+
<script src="./variables.js">
14+
</script>
15+
</body>
16+
17+
</html>

0 commit comments

Comments
 (0)