[JS] 스프레드시트 만들기 230803

SKY·2023년 8월 3일
0

복기 혹은 되새김질

목록 보기
13/24

25일차

Class를 이용해 간결하게 객체 생성이 가능하다.

class Cell {
  constructor(isHeader, disabled, data, row, column, rowName, columnName, active) {
    this.isHeader = isHeader;
    this.disabled = disabled;
    this.data = data;
    this.row = row;
    this.column = column;
    this.rowName = rowName;
    this.columnName = columnName;
    this.active = active;
  }
}

// ------------------- //

const cell = new Cell(isHeader,disabled,cellData,i,j,rowName,columnName,false);
      spreadsheetRow.push(cell);
    }

새로운 건 이것 뿐이지만, 전반적인 흐름을 읽는게 어려워서 강사님께 질문 후 내일 다시 정리할 생각이다.

0개의 댓글