Skip to content

Instantly share code, notes, and snippets.

View f1dz's full-sized avatar
☺️
Keep writing and learning

Khofidin f1dz

☺️
Keep writing and learning
View GitHub Profile
@f1dz
f1dz / dynamic-precision.js
Last active August 15, 2023 09:50
Dynamic Precision
/**
* Created by Chabib Nurozak
*/
function dynamicPrecision(value){
let secondNumbers = (value.toString().split('.')[1]).split('');
let i = 1;
for(let num in secondNumbers){
if(num > 0) break;
i++;