본문 바로가기

학원/JavaScript

제 15~19장. 간단 요약

[ 목차 ]

1. encodeURIComponent() / decodeURIComponent()

2. Math.random(): number

 

1. encodeURIComponent() / decodeURIComponent()

1) encode...는 매개변수로 전달된 URI 구성요소를 인코딩

2) decode...는 매개변수로 전달된 URI 구성요소를 디코딩

 

2. Math.random(): number

1) 임의의 부동 소수점을 반환

2) 소수점 0부터 1미만의 값

3) 1부터 10까지의 랜덤 값 반환과 소숫점을 제거하여 정수로 만드는 방법

 

 

그 외 내용은 앞서 중복된 내용이거나 깊은 지식이기에 간단히 넘어감

 

15장. 빌트인 객체 https://poiemaweb.com/js-built-in-object

16장. 전역 객체 https://poiemaweb.com/js-global-object

17장. Number 레퍼 객체 https://poiemaweb.com/js-number

18장. 수학 상수와 함수를 위한 Math 객체 https://poiemaweb.com/js-math

19장. 날짜와 시간을 위한 Date 객체 https://poiemaweb.com/js-date