javascript.sort (a,b) (오름차순) - .sort (내림차순) ,map() , map() 조건넣고 반환, .filter() 함수로 짝수 찾기
javascript.sort (a, b) (오름차순) -. sort (내림차순) , map() , map() 조건 넣고 반환,. filter() 함수로 짝수 찾기 -. sort (a, b) (오름차순) // 예시 배열 const numbers = [5, 2, 8, 1, 4]; // .sort() 메소드를 사용하여 오름차순으로 정렬하는 함수 numbers.sort((a, b) => { return a > b ? 1 : -1; }); console.log(numbers); -. sort (a, b) (내림차순) // 예시 배열 const numbers = [5, 2, 8, 1, 4]; // .sort() 메소드를 사용하여 오름차순으로 정렬하는 함수 numbers.sort((a, b) => { return a..
2023. 7. 30.
javascript .splice .concat .slice join(); - sort(); reverse();
javascript. splice. concat. slice join(); - sort(); reverse(); . splice( 위치삭제범위시작점, 위치삭제범위 끝 ) . splice(0.3) 기존배열에 영향을 끼치지않고 작성하는 곳 // 예시 배열 const numbers = [5, 2, 8, 1, 4]; // .splice(위치, 삭제범위) - 배열에서 요소를 삭제하고, 삭제한 요소를 반환합니다. const removedElements = numbers.splice(1, 2); console.log(removedElements); // [2, 8] console.log(numbers); // [5, 1, 4] . concat('새로운 어레이반환') 기존배열에 영향을 끼치지 않고, 배열 끝에 새로운 ..
2023. 7. 30.
[javascript] console.log(); ,. push,. pop,. shift(), unshift(), splice(0, 3) (기존배열변경)
[javascript] console.log(); ,. push,. pop,. shift(), unshift(), splice(0, 3) (기존배열변경) console.log(펑션이름); const myArray = [1, 2, 3, 4, 5]; console.log(myArray); 해당하는 함수명: myArray을 콘솔. log에 작성하여 함수의 이름으로도 함수의 내용을 확인할수있다. . push는 해당 배열의 마지막 배열에 끝에 저장하는 기능이다. const myArray = [1, 2, 3, 4, 5]; //. push() - 배열의 끝에 요소를 추가합니다. myArray.push(6); console.log(myArray); // [1, 2, 3, 4, 5, 6] . pop 은 마지막 끝배열'을..
2023. 7. 29.
[javascript] Function , Array.from() , arguments , console.log(myFunction(10,20)); // x와 y 값 구하기 응용버전
[javascript] Function , Array.from() , arguments , console.log(myFunction(10,20)); // x와 y 값 구하기 응용버전 DRY 규칙 반복하지 마세요 DRY D- Don't R-Repeat Y-Yourself 기본 Function function multiply(x, y) { return x * y; } const result1 = multiply(2, 4); console.log(result1); 출력 8 const result2 = multiply(5,6); 출력 30 Array.from() 메서드를 사용하여 이터러블 객체 // Array.from() 메서드를 사용하여 이터러블 객체를 배열로 변환합니다. const iterable = "He..
2023. 7. 29.
[ES6] 25 .split , for문, foreach 문 , map
[ES6] 25 .split [ES6] 25 .split 으로 글자 단위를 쪼개서 만들어보자. const str = "뤼튼은 창의력을 확장하도록 도와주는 기업입니다"; const words = str.split(" "); document.write(words); // ["뤼튼은", "창의력을", "확장하도록", "도와주는", "기업입니다"] const str = "뤼튼은 창의력을 확장하도록 도와주는 기업입니다"; const words = str.split(" "); 에서 split(" ") 이 부분이 빈 공간을 기준으로 split(" ") 을 하였고, 그래서 빈공간으로 인하여 글자단위로 쪼개졌다. [ES6] 25 .split 으로 (,) 단위를 쪼개서 만들어보자. const fruits = "apple,..
2023. 6. 12.