JavaScript的全部内置方法
时间: 2024-06-04 20:09:02 浏览: 196
JavaScript 的内置方法非常多,以下是一些常用的内置方法:
1. Array 方法:push、pop、shift、unshift、splice、slice、concat、join、indexOf、lastIndexOf、forEach、map、filter、reduce、sort。
2. String 方法:charAt、charCodeAt、concat、indexOf、lastIndexOf、match、replace、search、slice、split、substr、substring、toLowerCase、toUpperCase。
3. Math 方法:abs、ceil、floor、max、min、pow、random、round、sqrt。
4. Date 方法:getDate、getDay、getFullYear、getHours、getMilliseconds、getMinutes、getMonth、getSeconds、getTime、getTimezoneOffset、setDate、setFullYear、setHours、setMilliseconds、setMinutes、setMonth、setSeconds、setTime。
5. Object 方法:create、defineProperty、hasOwnProperty、isPrototypeOf、keys、preventExtensions、seal、valueOf。
6. Function 方法:apply、bind、call。
7. RegExp 方法:exec、test。
8. JSON 方法:parse、stringify。
以上只是列举了部分常用的内置方法,实际上 JavaScript 还有很多其他有用的内置方法。
阅读全文