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);
}
새로운 건 이것 뿐이지만, 전반적인 흐름을 읽는게 어려워서 강사님께 질문 후 내일 다시 정리할 생각이다.