Array
1. Declaration
const arr1 = new Array();
const arr2 = [1, 2];
2. Index position
const fruits = ['๐', '๐'];
console.log(fruits);
console.log(fruits.length);
console.log(fruits[0]);
console.log(fruits[fruits.length - 1]); // array์ index๋ 0๋ถํฐ ์์
3. Looping over an array
mission. print all fruits
a. for
for (let i = 0; i < fruits.length; i++) {
console.log(fruits[i]);
}
b. for of
for (let fruit of fruits) {
console.log(fruit);
}
c. forEach => callback ํจ์๋ฅผ ๋ฐ์์จ๋ค.
fruits.forEach((fruit) => console.log(fruit);
4. Addition, Deletion, copy
// push: add an item to the end
fruits.push('๐
','๐');
console.log(fruits); // ['๐', '๐', '๐
', '๐'
// pop: remove an item from the end
fruits.pop();
console.log(fruits); // ['๐', '๐', '๐
']
fruits.pop();
fruits.pop();
console.log(fruits); // ['๐']
//unshift: add an item to the beginning
fruits.unshift('๐', '๐');
console.log(fruits); // ['๐', '๐', '๐']
//shift: remove an item from the beginning
fruits.shift();
console.log(fruits); // ['๐', '๐']
note!! shift, unshift are slower than pop, push
์ด๋ฏธ data๊ฐ ์กด์ฌํ๋ ์์ชฝ ๋ถ๋ถ์ ์์ ํ๊ธฐ ์ํด array ์ ์ฒด๊ฐ ์์ ๋์ด์ผ ํ๊ธฐ ๋๋ฌธ์ ์๋๊ฐ ๋๋ ค์ง๋ค.
Array Quiz
// Q1. make a string out of an array
{
const fruits = ['apple', 'banana', 'orange'];
}
// Q2. make an array out of a string
{
const fruits = '๐, ๐ฅ, ๐, ๐';
}
// Q3. make this array look like this: [5, 4, 3, 2, 1]
{
const array = [1, 2, 3, 4, 5];
}
// Q4. make new array without the first two elements
{
const array = [1, 2, 3, 4, 5];
}
class Student {
constructor(name, age, enrolled, score) {
this.name = name;
this.age = age;
this.enrolled = enrolled;
this.score = score;
}
}
const students = [
new Student('A', 29, true, 45),
new Student('B', 28, false, 80),
new Student('C', 30, true, 90),
new Student('D', 40, false, 66),
new Student('E', 18, true, 88),
];
// Q5. find a student with the score 90
{
}
// Q6. make an array of enrolled students
{
}
// Q7. make an array containing only the students' scores
// result should be: [45, 80, 90, 66, 88]
{
}
// Q8. check if there is a student with the score lower than 50
{
}
// Q9. compute students' average score
{
}
// Q10. make a string containing all the scores
// result should be: '45, 80, 90, 66, 88'
{
}
// Bonus! do Q10 sorted in ascending order
// result should be: '45, 66, 80, 88, 90'
{
}
Array Quiz my answer
Q1.
{
const fruits = ['apple', 'banana', 'orange'];
const string = fruits.toString();
}
*********************************************************
Q2.
{
const fruits = '๐, ๐ฅ, ๐, ๐';
const arr = [];
for (i=0; i < fruits.length; i +=4 ) {
let item = fruits.slice(i, i+2);
arr.push(item);
}
console.log(arr);
}
*********************************************************
Q3.
{
const array = [1, 2, 3, 4, 5];
const reverseArray = [];
for(let i = array.length; i > 0; i--){
let item = array.slice(i-1, i);
reverseArray.push(item.toString());
}
console.log(reverseArray);
}
*********************************************************
Q4.
{
const array = [1, 2, 3, 4, 5];
const arr = [];
for ( i=0; i < 3; i++) {
let lastItem = array.pop();
arr.push(lastItem);
}
arr.reverse();
*********************************************************
Q5.
const result = students.find( ({score}) => score === 90);
*********************************************************
Q6.
*********************************************************
Q7.
function getField(input, field) {
let output = [];
for ( let i = 0; i < input.length; i++) {
output.push(input[i][field]);
}
return output;
}
const answer = getField(students, "score");
*********************************************************
Q8.
const result = students.filter( stu => stu.score < 50);
*********************************************************
Q9.
let sum = 0;
for ( let i=0; i < students.length; i++) {
sum += students[i]['score'];
}
let avg = sum / students.length;
console.log(avg);
*********************************************************
Q10.
let arr = [];
let result = 0;
for ( let i=0; i < students.length; i++) {
arr.push(students[i]['score']);
result = arr.toString();
}
console.log(result);
*********************************************************
Q.Bounes
let arr = [];
let result = 0;
for ( let i=0; i < students.length; i++) {
arr.push(students[i]['score']);
arr.sort();
result = arr.toString();
}
console.log(result);
Array Quiz regular answer
// Q1. make a string out of an array
{
const fruits = ['apple', 'banana', 'orange'];
const result = fruits.join(`,`);
}
// Q2. make an array out of a string
{
const fruits = '๐, ๐ฅ, ๐, ๐';
const result = fruits.split(',');
}
// Q3. make this array look like this: [5, 4, 3, 2, 1]
{
const array = [1, 2, 3, 4, 5];
const result = array.reverse();
}
// Q4. make new array without the first two elements
{
const array = [1, 2, 3, 4, 5];
const result = array.slice(2,5);
}
class Student {
constructor(name, age, enrolled, score) {
this.name = name;
this.age = age;
this.enrolled = enrolled;
this.score = score;
}
}
const students = [
new Student('A', 29, true, 45),
new Student('B', 28, false, 80),
new Student('C', 30, true, 90),
new Student('D', 40, false, 66),
new Student('E', 18, true, 88),
];
// Q5. find a student with the score 90
{
consst result = students.find((student) => student.score === 90;);
}
// Q6. make an array of enrolled students
{
const result = students.filter((student) => students.enrolled);
}
// Q7. make an array containing only the students' scores
// result should be: [45, 80, 90, 66, 88]
{
const result = students.map((student) => student.score);
}
// Q8. check if there is a student with the score lower than 50
{
const result = students.some((student) => student.score < 50);
const result = students.every((student) => student.score < 50);
}
// Q9. compute students' average score
{
const result = students.reduce((prev, curr) => prev + curr.score, 0);
console.log(result / students.length);
}
// Q10. make a string containing all the scores
// result should be: '45, 80, 90, 66, 88'
{
const result = students.map((student) => student.score).join());
}
// Bonus! do Q10 sorted in ascending order
// result should be: '45, 66, 80, 88, 90'
{
const result = students
.map(student => student.score)
.sort((a, b) => a - b)
.join();
}
}
Q4. ์์์ฒ๋ผ splice๋ฅผ ์ฌ์ฉํ์ฌ ์๋ก์ด ๋ฐฐ์ด์ ๋ง๋ค๊ฒ ๋๋ฉด ๊ธฐ์กด ๋ฐฐ์ด ๋ํ splice๋ฅผ ์ฌ์ฉํ์ฌ ๋ง๋ ์ ๋ฐฐ์ด๊ณผ ๊ฐ์์ง๋ค.
map: array ์์ ์์๋ค์ callback ํจ์์์ return๋ ๊ฐ์ผ๋ก ๋์ฒด ํด์ค๋ค.
some: array์ ์์ ์ค์์ callback ํจ์๊ฐ return์ด true์ธ ์์๊ฐ ์๋์ง ํ์ธํด์ค๋ค.
every: array์ ๋ชจ๋ ์์๊ฐ callback ํจ์์ return์ด true์ธ์ง ํ์ธํด์ค๋ค.
Q10. API ๋ค์ ์์ด์ ์ฌ์ฉํ ์๋ ์๋ค.
Q10.. E.g make a string containing all the scores
// result should be: '45, 80, 90, 66, 88'
{
const result = students
.map((student) => student.score)
.filter(score => score >= 50)
.join());
}
'JavaScript' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
JS | Promise ( Producer, Consumer) (0) | 2021.12.28 |
---|---|
JS | ๋น๋๊ธฐ ์ฒ๋ฆฌ์ ์์ ์ฝ๋ฐฑ (0) | 2021.12.27 |
JS | Script option, Operator, Class and Object (0) | 2021.12.21 |
JS | logical and data type (0) | 2021.12.20 |
JS | clock(digital) , add back to top button (0) | 2021.12.17 |