js 내장 객체의 기능 및 사용법
JavaScript(줄여서 JS)는 웹 개발에 널리 사용되는 스크립팅 언어입니다. 객체 지향 언어인 JS는 개발자가 보다 효율적으로 프로그래밍하는 데 도움이 되는 다양한 기능과 메서드가 포함된 많은 내장 객체를 제공합니다.
이 글에서는 Math, Date, Array, String 등 일반적으로 사용되는 JS 내장 개체와 해당 기능 및 사용법을 소개하고 구체적인 코드 예제를 제공합니다.
Math 객체는 일반적으로 사용되는 다양한 수학적 계산 방법을 제공하는 수학 관련 내장 객체입니다.
Math 객체의 일반적인 메서드는 다음과 같습니다.
샘플 코드:
console.log(Math.abs(-5)); // 输出:5 console.log(Math.ceil(3.7)); // 输出:4 console.log(Math.floor(3.7)); // 输出:3 console.log(Math.round(3.2)); // 输出:3 console.log(Math.max(1, 2, 3)); // 输出:3 console.log(Math.min(1, 2, 3)); // 输出:1 console.log(Math.random()); // 输出:0.123456789(随机数)
Date 객체는 날짜 및 시간 관련 작업을 처리하는 데 사용됩니다. 현재 시간을 나타내는 Date 객체를 생성하거나, 날짜와 시간을 지정하여 Date 객체를 생성할 수 있습니다.
Date 객체의 일반적인 메소드는 다음과 같습니다.
샘플 코드:
var now = new Date(); console.log(now); // 输出:Mon Dec 20 2021 15:30:00 GMT+0800 (中国标准时间) var specificDate = new Date(2021, 11, 25); console.log(specificDate); // 输出:Fri Dec 25 2021 00:00:00 GMT+0800 (中国标准时间) var timestamp = Date.now(); console.log(timestamp); // 输出:1639977000000(时间戳)
Array 객체는 일련의 데이터를 저장하고 조작하는 데 사용되는 내장 객체입니다. Array 객체는 리터럴이나 생성자를 통해 생성될 수 있습니다.
Array 객체의 일반적인 메서드는 다음과 같습니다.
샘플 코드:
var fruits = ['apple', 'banana', 'orange']; fruits.push('pear'); console.log(fruits); // 输出:[ 'apple', 'banana', 'orange', 'pear' ] var lastFruit = fruits.pop(); console.log(lastFruit); // 输出:pear console.log(fruits); // 输出:[ 'apple', 'banana', 'orange' ] var firstFruit = fruits.shift(); console.log(firstFruit); // 输出:apple console.log(fruits); // 输出:[ 'banana', 'orange' ] fruits.unshift('grape'); console.log(fruits); // 输出:[ 'grape', 'banana', 'orange' ] var moreFruits = ['watermelon', 'kiwi']; var allFruits = fruits.concat(moreFruits); console.log(allFruits); // 输出:[ 'grape', 'banana', 'orange', 'watermelon', 'kiwi' ]
String 객체는 문자열을 처리하기 위해 내장된 객체입니다. String 개체의 메서드를 사용하여 연결, 검색, 바꾸기 등의 문자열 작업을 수행할 수 있습니다.
String 객체의 일반적인 메소드는 다음과 같습니다.
샘플 코드:
var message = 'Hello, World!'; console.log(message.length); // 输出:13 console.log(message.charAt(4)); // 输出:o console.log(message.indexOf('World')); // 输出:7 console.log(message.substring(7, 12)); // 输出:World var newMessage = message.replace('World', 'JavaScript'); console.log(newMessage); // 输出:Hello, JavaScript!
위는 일반적으로 사용되는 JS 내장 개체와 해당 기능 및 사용법에 대한 소개입니다. 이러한 내장 개체의 메서드를 통해 수학 연산, 날짜 및 시간을 보다 쉽게 처리할 수 있습니다. , 배열 및 문자열 작업. 이러한 객체와 해당 메소드에 능숙하면 JS 프로그래밍의 효율성과 품질을 크게 향상시킬 수 있습니다.
위 내용은 js 내장 객체의 기능 및 사용법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!