danielfloresd / team-profile-generator

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
a year agoa year old
Documentation comment not found for arrow function internCard
 77
 78};
 79
 80const internCard = ({ name, id, email, school }) => { 81    return `
 82        <div class="cell flex-container">
 83            <div class="card">
Documentation comment not found for arrow function engineerCard
 41    `;
 42};
 43
 44const engineerCard = ({ name, id, email, github }) => { 45
 46    return `
 47        <div class="cell flex-container">
Documentation comment not found for function declaration generateDocument
 27    return item;
 28}
 29
 30function generateDocument(data) { 31
 32    var html = generateHTML(data);
 33
Documentation comment not found for class Manager
12 *
13 */
14const Employee = require('./Employee');
15class Manager extends Employee {16    constructor(name, id, email, officeNumber) {
17        
18        if (typeof officeNumber !== "number" || isNaN(officeNumber) || officeNumber < 0) {
Documentation comment not found for method definition getOfficeNumber
22        this.officeNumber = officeNumber;
23    }
24
25    getOfficeNumber() {26        return this.officeNumber;
27    }
28