JS Arrondir une décimale deux

const number = 3.1415926
const roundedNumber = number.toFixed(2)
Lucas Charvolin