Contact: aviboots(AT)netvision.net.il
41,427 questions
53,974 answers
573 users
let x = 9382.4; let y = Math.round(x); console.log(y); x = 9382.5; y = Math.round(x); console.log(y); /* run: 9382 9383 */