function ceil(num, byte){
    let n = Math.pow(10, byte)
    return Math.ceil(num * n) / n
}

ceil(6.008, 2) //6.01