How to convert percent to decimal in Node.js

1 Answer

0 votes
function percentToDecimal(percent) {
  	return parseFloat(percent) / 100.0;
}

console.log(percentToDecimal('23%')); 
console.log(percentToDecimal('0%')); 
console.log(percentToDecimal('16.8%')); 
console.log(percentToDecimal('100%'));
  
  
  
  
/*
run:
  
0.23
0
0.168
1
  
*/

 



answered Apr 21, 2022 by avibootz
...