Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,990 questions

51,935 answers

573 users

How to calculate depreciation per years in JavaScript

1 Answer

0 votes
const amount = 1000;
const deppercent = 40; // 40%
const years = 3;
          
let amount_left = amount;
          
let annual_depreciation = 0;
         
console.log("Initial amout = " + amount_left);
          
for(let i = 0; i < years; i++) {
    annual_depreciation = (deppercent * amount_left) / 100;
    amount_left = amount_left - annual_depreciation;
    console.log("Year :" + (i + 1) + " Annual depreciation = " + annual_depreciation + " Amount left = " + amount_left);
}
  
console.log("Amount after depreciation = " + amount_left);
  
  
  
  
  
/*
run:
   
"Initial amout = 1000"
"Year :1 Annual depreciation = 400 Amount left = 600"
"Year :2 Annual depreciation = 240 Amount left = 360"
"Year :3 Annual depreciation = 144 Amount left = 216"
"Amount after depreciation = 216"
   
*/

 



answered Aug 15, 2021 by avibootz

Related questions

1 answer 118 views
1 answer 118 views
118 views asked Aug 15, 2021 by avibootz
1 answer 147 views
1 answer 172 views
1 answer 153 views
1 answer 335 views
1 answer 161 views
...