You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

449 lines
11 KiB

5 years ago
<div align="center">
<h1> 30 Days Of JavaScript</h1>
<a class="header-badge" target="_blank" href="https://www.linkedin.com/in/asabeneh/">
<img src="https://img.shields.io/badge/style--5eba00.svg?label=LinkedIn&logo=linkedin&style=social">
</a>
<a class="header-badge" target="_blank" href="https://twitter.com/Asabeneh">
<img alt="Twitter Follow" src="https://img.shields.io/twitter/follow/asabeneh?style=social">
</a>
5 years ago
<sub>Author:
<a href="https://www.linkedin.com/in/asabeneh/" target="_blank">Asabeneh Yetayeh</a><br>
5 years ago
<small> January, 2020</small>
</sub>
</div>
5 years ago
5 years ago
[<< Day 5](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master/05_Day/05_day_arrays.md) | [Day 7 >>](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master/07_Day/07_day_functions.md)
5 years ago
5 years ago
![Day 5](../images/banners/day_1_6.png)
5 years ago
- [📔 Day 6](#%f0%9f%93%94-day-6)
- [Loops](#loops)
- [for Loop](#for-loop)
- [while loop](#while-loop)
- [do while loop](#do-while-loop)
- [for of loop](#for-of-loop)
5 years ago
- [break](#break)
- [continue](#continue)
5 years ago
- [💻 Exercises:Day 6](#%f0%9f%92%bb-exercisesday-6)
5 years ago
- [Exercises: Level 1](#exercises-level-1)
- [Exercises: Level 2](#exercises-level-2)
- [Exercises: Level 3](#exercises-level-3)
5 years ago
# 📔 Day 6
## Loops
Most of the activities we do in life are full of repetitions. Imagine if I ask you to print out from 0 to 100 using console.log(). To implement this simple task it may take you 2 to 5 minutes, such kind of tedious and repetitive task can be carried out using loop.
In programming languages to carry out repetitive task we use different kinds of loop. The following examples are the commonly used loops.
### for Loop
```js
//For loop structure
for(initialization, condition, increment/decrement){
// code goes here
}
5 years ago
```
```js
5 years ago
for(let i = 0; i <= 5; i++){
console.log(i)
}
// 0 1 2 3 4 5
5 years ago
```
5 years ago
5 years ago
```js
5 years ago
for(let i = 5; i >= 0; i--){
console.log(i)
}
// 5 4 3 2 1 0
5 years ago
```
5 years ago
5 years ago
```js
5 years ago
for(let i = 0; i <= 5; i++){
console.log(`${i} * ${i} = ${i * i}`)
}
5 years ago
```
5 years ago
5 years ago
```sh
0 * 0 = 0
1 * 1 = 1
2 * 2 = 4
3 * 3 = 9
4 * 4 = 16
5 * 5 = 25
```
```js
const countries = ['Finland', 'Sweden', 'Denmark', 'Norway', 'Iceland']
const newArr = []
for(let i = 0; i < countries.length; i++){
newArr.push(countries[i].toUpperCase())
}
//["FINLAND", "SWEDEN", "DENMARK", "NORWAY", "ICELAND"]
5 years ago
```
Adding all elements in the array
```js
const numbers = [1, 2, 3, 4, 5]
let sum = 0
for(let i = 0; i < numbers.length; i++){
sum = sum + numbers[i] // can be shorten, sum += numbers[i]
}
console.log(sum) // 15
```
5 years ago
Creating a new array based on the existing array
5 years ago
```js
const numbers = [1, 2, 3, 4, 5]
const newArr = []
let sum = 0
for(let i = 0; i < numbers.length; i++){
newArr.push(i * i)
}
console.log(newArr) // [1, 4, 9, 16, 25]
```
5 years ago
```js
const countries = ['Finland', 'Sweden', 'Norway', 'Denmark', 'Iceland']
const newArr = []
for(let i = 0; i < countries.length; i++){
newArr.push(countries[i].toUpperCase())
}
console.log(newArr) // ["FINLAND", "SWEDEN", "NORWAY", "DENMARK", "ICELAND"]
```
5 years ago
### while loop
```js
let i = 0
while (i <= 5) {
console.log(i)
i++
}
5 years ago
// 0 1 2 3 4 5
5 years ago
```
### do while loop
```js
let i = 0
do {
console.log(i)
i++
} while (i <= 5)
5 years ago
// 0 1 2 3 4 5
5 years ago
```
### for of loop
We use for of loop for arrays. It is very hand way to iterate through an array if we are not interested in the index.
```js
for (const element of arr) {
// code goes here
}
```
```js
const numbers = [1, 2, 3, 4, 5]
for (const num of numbers) {
console.log(num) //1 2 3 4 5
}
for (const num of numbers) {
console.log(num * num) //1 4 9 16 25
}
// adding all the numbers in the array
let sum = 0
for (const num of numbers) {
sum += sum + num // can be also shorten like this, sum += num
}
console.log(sum) // 15
const webTechs = [
'HTML',
'CSS',
'JavaScript',
'React',
'Redux',
'Node',
'MongoDB'
]
for (const tech of webTechs) {
console.log(tech.toUpperCase()) // HTML CSS JAVASCRIPT REACT NODE MONGODB
}
for (const tech of webTechs) {
console.log(tech[0]) //get only the first letter of each element, H C J R N M
}
```
5 years ago
```js
const countries = ['Finland', 'Sweden', 'Norway', 'Denmark', 'Iceland']
const newArr = []
for(const country of countries){
newArr.push(country.toUpperCase())
}
console.log(newArr) // ["FINLAND", "SWEDEN", "NORWAY", "DENMARK", "ICELAND"]
```
5 years ago
### break
content will be added soon
### continue
content will added soon
🌕 You are so brave, you made it to this far. Now, you have gained the power to automate repetitive and tedious tasks. You have just completed day 6 challenges and you are 6 steps a head in to your way to greatness. Now do some exercises for your brain and for your muscle.
5 years ago
## 💻 Exercises:Day 6
5 years ago
### Exercises: Level 1
5 years ago
```js
const countries = [
'Albania',
'Bolivia',
'Canada',
'Denmark',
'Ethiopia',
'Finland',
'Germany',
'Hungary',
'Ireland',
'Japan',
'Kenya'
]
5 years ago
5 years ago
const webTechs = [
'HTML',
'CSS',
'JavaScript',
'React',
'Redux',
'Node',
'MongoDB'
]
5 years ago
5 years ago
const mernStack = ['MongoDB', 'Express', 'React', 'Node']
```
5 years ago
1. Iterate 0 to 10 using for loop, do the same using while and do while loop
2. Iterate 10 to 0 using for loop, do the same using while and do while loop
3. Iterate 0 to n using for loop
4. Write a loop that makes the following pattern using console.log():
```js
#
##
###
####
#####
######
#######
```
5. Use loop to print the following pattern:
```sh
0 x 0 = 0
1 x 1 = 1
2 x 2 = 4
3 x 3 = 9
4 x 4 = 16
5 x 5 = 25
6 x 6 = 36
7 x 7 = 49
8 x 8 = 64
9 x 9 = 81
10 x 10 = 100
```
6. Using loop print the following pattern
```sh
i i^2 i^3
0 0 0
1 1 1
2 4 8
3 9 27
4 16 64
5 25 125
6 36 216
7 49 343
8 64 512
9 81 729
10 100 1000
```
7. Use for loop to iterate from 0 to 100 and print only even numbers
8. Use for loop to iterate from 0 to 100 and print only odd numbers
9. Use for loop to iterate from 0 to 100 and print only prime numbers
10. Use for loop to iterate from 0 to 100 and print and print the sum of all numbers.
```sh
The sum all numbers is 5050.
```
11. Use for loop to iterate from 0 to 100 and print the sum of all evens and the sum of all odds.
```sh
The sum of all evens is 2550. And the sum of all odds is 2500.
```
12. Use for loop to iterate from 0 to 100 and print the sum of all evens and the sum of all odds. Print sum of evens and sum of odds as array
```sh
[2550, 2500]
```
13. Develop a small script which generate array of 5 random numbers
14. Develop a small script which generate array of 5 random numbers and the numbers must be unique
15. Develop a small script which generate a six characters random id:
```sh
5j2khz
```
5 years ago
### Exercises: Level 2
1. Develop a small script which generate any number of characters random id:
5 years ago
```sh
5 years ago
fe3jo1gl124g
5 years ago
```
```sh
5 years ago
xkqci4utda1lmbelpkm03rba
5 years ago
```
5 years ago
1. Write a script which generates a random hexadecimal number.
5 years ago
5 years ago
```sh
'#ee33df'
```
5 years ago
5 years ago
1. Write a script which generates a random rgb color number.
5 years ago
5 years ago
```sh
rgb(240,180,80)
```
5 years ago
5 years ago
1. Using the above countries array, create the following new array.
5 years ago
```sh
["ALBANIA", "BOLIVIA", "CANADA", "DENMARK", "ETHIOPIA", "FINLAND", "GERMANY", "HUNGARY", "IRELAND", "JAPAN", "KENYA"]
```
5 years ago
1. Using the above countries array, create an array for countries length'.
5 years ago
```sh
[7, 7, 6, 7, 8, 7, 7, 7, 7, 5, 5]
```
5 years ago
1. Use the countries array to create the following array of arrays:
5 years ago
```sh
[
['Albania', 'ALB', 7],
['Bolivia', 'BOL', 7],
['Canada', 'CAN', 6],
['Denmark', 'DEN', 7],
['Ethiopia', 'ETH', 8],
['Finland', 'FIN', 7],
['Germany', 'GER', 7],
['Hungary', 'HUN', 7],
['Ireland', 'IRE', 7],
['Japan', 'JAP', 5],
['Kenya', 'KEN', 5]
]
```
5 years ago
1. In above countries array, check if there is a country or countries containing the word 'land'. If there are countries containing 'land', print it as array. If there is no country containing the word 'land', print 'All these are countries without land'.
5 years ago
```sh
['Finland', 'Iceland']
```
5 years ago
1. In above countries array, check if there is a country or countries end with a substring 'ia'. If there are countries end with, print it as array. If there is no country containing the word 'ai', print 'These are countries ends without ia'.
5 years ago
```sh
['Albania', 'Bolivia','Ethiopia']
```
5 years ago
1. Using the above countries array, find the country containing the biggest number of characters.
5 years ago
5 years ago
```sh
Ethiopia
```
5 years ago
5 years ago
1. Using the above countries array, find the country containing only 5 characters.
5 years ago
```sh
['Japan', 'Kenya']
```
5 years ago
1. Find the longest word in the webTechs array
1. Use the webTechs are to create the following array of arrays:
5 years ago
```sh
[["HTML", 4], ["CSS", 3],["JavaScript", 10],["React", 5],["Redux", 5],["Node", 4],["MongoDB", 7]]
```
5 years ago
1. An application created using MongoDB, Express, React and Node is called a MERN stack. Create the acronym MERN by using the array mernStack
1. Iterate through the array, ["HTML", "CSS", "JS", "React", "Redux", "Node", "Express", "MongoDB"] using a for loop or for of loop and print out the items.
1. This is a fruit array , ['banana', 'orange', 'mango', 'lemon'] reverse the order using loop without using a reverse method.
1. Print all the elements of array as shown below.
5 years ago
5 years ago
```js
const fullStack = [
['HTML', 'CSS', 'JS', 'React'],
['Node', 'Express', 'MongoDB']
]
````
5 years ago
5 years ago
```sh
HTML
CSS
JS
REACT
NODE
EXPRESS
MONGODB
```
5 years ago
### Exercises: Level 3
1. Copy countries array(Avoid mutation)
1. Arrays are mutable. Create a copy of array which does not modify the original. Sort the copied array and store in a variable sortedCountries
1. Sort the webTechs array and mernStack array
1. Extract all the countries contain the word 'land' from the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js) and print it as array
1. Find the country containing the hightest number of characters in the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js)
1. Extract all the countries contain the word 'land' from the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js) and print it as array
1. Extract all the countries containing only four characters from the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js) and print it as array
1. Extract all the countries containing two or more words from the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js) and print it as array
1. Reverse the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js) and capitalize each country and stored it as an array
5 years ago
🎉 CONGRATULATIONS ! 🎉
5 years ago
[<< Day 5](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master/05_Day/05_day_arrays.md) | [Day 7 >>](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master/07_Day/07_day_functions.md)