Contact: aviboots(AT)netvision.net.il
38,546 questions
50,217 answers
573 users
let x: number = 7691.4; let y: number = Math.round(x); console.log(y); x = 7691.5; y = Math.round(x); console.log(y); /* run: 7691 7692 */