Skip to content

Instantly share code, notes, and snippets.

View jecorrales3's full-sized avatar
🎯
Focusing

Github Name jecorrales3

🎯
Focusing
View GitHub Profile
@schmidt1024
schmidt1024 / round.ts
Last active June 8, 2021 14:52
math round in typescript
// round(1234.5678, 2); // 1234.57
round(number, precision) {
var factor = Math.pow(10, precision);
var tempNumber = number * factor;
var roundedTempNumber = Math.round(tempNumber);
return roundedTempNumber / factor;
};