JS 내장 대상 과 Math 대상 지식 점 상세 설명

수학 대상

<script>
    // Math              ,       new                     
    console.log(Math.PI); //         
    console.log(Math.max(1, 99, 3)); // 99
    console.log(Math.max(-1, -10)); // -1
    console.log(Math.max(1, 99, 'pink  ')); // NaN
    console.log(Math.max()); // -Infinity
  </script>
셀 프 패키지 대상

<script>
    //                   PI        
    var myMath = {
      PI: 3.141592653,
      max: function() {
        var max = arguments[0];
        for (var i = 1; i < arguments.length; i++) {
          if (arguments[i] > max) {
            max = arguments[i];
          }
        }
        return max;
      },
      min: function() {
        var min = arguments[0];
        for (var i = 1; i < arguments.length; i++) {
          if (arguments[i] < min) {
            min = arguments[i];
          }
        }
        return min;
      }
    }
    console.log(myMath.PI);
    console.log(myMath.max(1, 5, 9));
    console.log(myMath.min(1, 5, 9));
  </script>
상용 하 는 방법 들

<script>
    // 1.     
    console.log(Math.abs(1)); // 1
    console.log(Math.abs(-1)); // 1
    console.log(Math.abs('-1')); //             -1       
    console.log(Math.abs('pink')); // NaN 

    // 2.      
    // (1) Math.floor()                
    console.log(Math.floor(1.1)); // 1
    console.log(Math.floor(1.9)); // 1
    // (2) Math.ceil()  ceil                
    console.log(Math.ceil(1.1)); // 2
    console.log(Math.ceil(1.9)); // 2
    // (3) Math.round()                 ,   .5          
    console.log(Math.round(1.1)); // 1
    console.log(Math.round(1.5)); // 2
    console.log(Math.round(1.9)); // 2
    console.log(Math.round(-1.1)); // -1
    console.log(Math.round(-1.5)); //       -1
  </script>

<script>
    // 1.Math         random()           0 =< x < 1
    // 2.           
    // 3.      
    console.log(Math.random());
    // 4.                        2   
    // Math.floor(Math.random() * (max - min + 1)) + min;
    function getRandom(min, max) {
      return Math.floor(Math.random() * (max - min + 1)) + min;
    }
    console.log(getRandom(1, 10));
    // 5.      
    var arr = ['  ', '   ', '    ', '  ', '   ', 'pink  '];
    // console.log(arr[0]);
    console.log(arr[getRandom(0, arr.length - 1)]);
  </script>
JS 내 장 된 대상 과 Math 대상 에 대한 지식 에 대한 자세 한 설명 은 여기까지 입 니 다.더 많은 JS 내 장 된 대상 과 Math 대상 에 대한 내용 은 저희 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 읽 어 주시 기 바 랍 니 다.앞으로 많은 응원 부탁드립니다!

좋은 웹페이지 즐겨찾기