알고리즘 함수 정리

jinah·2021년 4월 17일
0

sort.((a,b)) => a+b); 오름차순
sort.((a,b)) => a-b); 내림차순

reduce.((a,b) => a+b); 배열의 모든 값 더하기
reduce((a,b) => a-b); 배열의 모든 값 빼기

parseInt() 문자열을 정수로 바꾸는 함수

splice

사진 자료 출처: https://hianna.tistory.com/396

split:
String.prototype.split()
split() 메서드는 String 객체를 지정한 구분자를 이용하여 여러 개의 문자열로 나눕니다.
const str = 'The quick brown fox jumps over the lazy dog.';

const words = str.split(' ');
console.log(words[3]);
// expected output: "fox"

const chars = str.split('');
console.log(chars[8]);
// expected output: "k"

const strCopy = str.split();
console.log(strCopy);
// expected output: Array ["The quick brown fox jumps over the lazy dog."]

profile
안녕하세요:)

0개의 댓글