Round values up jQuery

3

I have the following jQuery:

$(".quantidade_lotes").change(function() {
    var quantidade_linhas = $("#quantidade_linhas").val();
    var quantidade_lotes = $(".quantidade_lotes").val();
    var quantidade_dividida = (quantidade_linhas/quantidade_lotes);
});

In this, quantity_lines is = 17, quantity_lets = 5, and split_size = 3.4. I need the result to be 4, always leasing it up. How can I do this?

    
asked by anonymous 26.10.2016 / 18:11

1 answer

7

You can use the ceil () function;

Math.ceil(1.4)

Returns 2;

Font

    
26.10.2016 / 18:13