Javascript: 수학을 얼마나 합니까?

예. Javascript는 내장 개체를 제공합니다Math. 숫자 작업에 유용한 몇 가지 방법이 있습니다. 우리가 실제로 사용하는 것을 살펴 보겠습니다.

정수로 반올림



  • round() - ➡️ 가장 가까운 정수로 반올림합니다.

  • ceil() - ⬆️ 가장 가까운 정수로 반올림합니다.

  • floor() - ⬇️ 가장 가까운 정수로 내림합니다.

  • const num = 10.5;
    
    console.log(Math.round(num)); // 11
    console.log(Math.ceil(num)); // 11
    console.log(Math.floor(num)); // 10
    
    const num1 = 10.4;
    
    console.log(Math.round(num1)); // 10
    console.log(Math.ceil(num1)); // 11
    console.log(Math.floor(num1)); // 10
    

    Remember like this:
    라운드 - 10.0 - 10.4 -> 10 및 10.5 -> 11.0 -> 11

    셀(위) - 10.1 - 10.9. -> 11

    바닥(아래) - 10.1 - 10.9 -> 10

    음수에도 동일하게 적용됩니다.

    정수 부분 반환



    trunc() - 정수 부분을 그대로 반환합니다.

    const num = 10.547;
    
    console.log(Math.trunc(num));
    > 10
    


    절대 숫자 반환



    abs() - 양수를 반환합니다.

    const num = 10.547;
    const num1 = -10.547;
    
    console.log(Math.abs(num)); // 10.547
    console.log(Math.abs(num1)); // 10.547
    


    전력 및 sqrt



    설명이 필요하지 않기를 바랍니다.

    const num = 9;
    
    console.log(Math.pow(num, 2)); // 81
    console.log(Math.sqrt(num)); // 3
    
    


    최대 및 최소



    주어진 목록의 최대 수와 최소 수를 반환합니다.

    console.log(Math.max(3,4,5,1,2)); // 5
    
    console.log(Math.min(3,4,5,1,2)); // 1
    
    


    난수



    random() - 0 - 1 사이의 난수를 반환하는 데 사용되는 메서드입니다.

    console.log(Math.random()); // 0.34609498534013383
    
    


    거의 사용하지 않는 개체의 메서드Math가 몇 개 더 있습니다.

    사람들은:
    Math.sign() - 제공된 숫자에 따라 -1(음수), 0(null), 1(양수)을 반환합니다.
    Math.sin() & Math.cos() - 삼각법 연산 - sin 90 - 1.
    Math.log(x) & Math.log2() & Math.log10() - 대수 변환을 반환합니다.

    감사합니다 😊

    좋은 웹페이지 즐겨찾기