TIL 20221017 - 115번(fill)

hoin_lee·2022년 10월 18일
0

TIL

목록 보기
79/236

오후에 갑자기 스파르타에서 연락이 와 내일부터 매니저를 해줄수 있냐고 해서 음.. 알겠습니다라고 했다.
어차피 돈이 필요한 상황이기도 했고 공부도 계속 해야되니 딱 알맞다고 생각됐다.
첫 날은 바쁘다는데 어떻게 될지.. 화이팅하자

오늘 공부

알고리즘 문제 풀기(프로그래머스)
https://github.com/hoinlee-moi/algorithm_prac
오늘은 앞서 배우고 복습했던 문법들로 대부분 풀 수 있었다!

JS기본문법 다시 공부
https://github.com/hoinlee-moi/ModernJS

React 강의 듣기
https://github.com/hoinlee-moi/React_prac

복습하는 문법

fill()

배열의 시작 인덱스부터 끝 인덱스의 이전까지 정적인 값 하나로 채운다.

const array1 = [1, 2, 3, 4];

// fill with 0 from position 2 until position 4
console.log(array1.fill(0, 2, 4));
// expected output: [1, 2, 0, 0]

// fill with 5 from position 1
console.log(array1.fill(5, 1));
// expected output: [1, 5, 5, 5]

console.log(array1.fill(6));
// expected output: [6, 6, 6, 6]

arr.fill(value,start,end)

  • value : 배열을 채울값
  • start : 시작인덱스 , 기본 값은 0
  • end : 끝 인덱스, 기본 값은 this.length
  • 반환 값 : 변형한 배열
profile
https://mo-i-programmers.tistory.com/

0개의 댓글