1. URI 메소드
encodeURI() 및 encodeURIComponent() 인코딩 URI
encodeURI()는 콜론, 슬래시, hello, tic-tac-toe 등과 같은 URI 자체인 특수 문자를 인코딩하지 않습니다. .
encodeURIComponent()는 모든 비표준 문자를 인코딩합니다.
2.eval() 메서드: 매개변수의 코드 문자열을 해석합니다.
var msg = "hello world"
eval("alert(msg)") //" hello world"
3.Math 객체
Math.E 수학에서 e의 값
Math.PI π의 값
Math.SQRT2 제곱근 of 2
Math .abs(num) num
Math.exp(num) e의 num 거듭제곱
Math.log(num) num의 자연 로그
Math. pow(num,n) num n번째 거듭제곱
Math.sqrt(num) num의 제곱근
Math.acos(x) x의 아크코사인
Math.asin(x) x의 아크사인
Math .atan( x) x의 아크탄젠트
Math.atan2(y,x) y/x의 아크탄젠트
Math.cos(x) x의 코사인
Math.sin(x) x 값의 사인
Math.tan(x) x의 탄젠트 값
4.min() 및 max() 메서드
var max = Math.max(3,45,67,32)
alert(max) //67
var min = Math.min(2,46,74);
alert(min); //2
5. 소수를 정수로 반올림하는 방법
Math.ceil() up Round
Math.floor() Round down
Math.round() Round
코드 복사 코드는 다음과 같습니다. 다음과 같습니다:
alert(Math.ceil(25.1)); //26
alert(Math.ceil(25.5)) //26
alert(Math.ceil( 25.9) ); //26
alert(Math.round(25.1)); //25
alert(Math.round(25.5)) //26
alert(Math.round (25.9 )); //26
alert(Math.floor(25.1)); //25
alert(Math.floor(25.5)) //25
alert(Math. Floor( 25.9)); //25
6. random() 메소드는 0과 1을 제외한 0과 1 사이의 난수를 반환합니다.
특정 범위 내에서 난수를 선택합니다. :
난수 = Math.floor(Math.random * 총 첫 번째 값) // 총 수 = 두 번째 값 - 첫 번째 값
//범위 내에서 난수 함수 가져오기
function selectFrom(lowerValue,upperValue) {
var count = upperValue - lowerValue 1;
return Math.floor(Math.random() * count lowerValue)
var num = selectFrom(2,10); /2~10 사이의 숫자(2~10 포함)