1.0.3 • Published 3 years ago

increase-in-company v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Description

A company needs to know the salary of 4 employees and it will increase them by 10, 15, 20 and 25% respectively. Calculate the salary of each of the employees, taking into account the increase.

Usage

 let Company=require("./Company").Company;
 let Employee=require("./Employee").Employee;

 let arrayemp=[];

 arrayemp.push(new Employee("Ghael",50.19));
 arrayemp.push(new Employee("John",50.19));
 arrayemp.push(new Employee("Asd",50.19));
 arrayemp.push(new Employee("DSA",50.19));

 let company=new Company(arrayemp);
let calcemployeesincrease=company.calc_increase_employees();
 const show_calc_increase_employees=()=>
 {
     calcemployeesincrease.map(
         item=>{
         console.log("                                      ");
         console.log("Name: "+item.name);
         console.log("Your previous salary is: USD "+item.salary)
         console.log("Your salary with increase of "+item.i+"% is: USD "+item.salaryincrease);

         }
     )
 }
show_calc_increase_employees();
1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago