вот в бандл закидывают
index.js
import Employee from './Employee.js';
Employee.js
export default class Employee {
constructor(name, salary, coeffs) {
this.name = name;
this.salary = salary;
this.coeffs = coeffs;
}
getTotal() {
return this.coeffs.reduce((res, coeff)=> {
return res + this.salary * coeff;
}, 0);
}
}
В абсолютно чистый хтмл закидываю, название файла делаю прописным, пустой класс никак не идет, странно