JS Common 2 之比较常用到的函数第1/3页
简介
本攻略介绍了 JavaScript 中比较常用到的函数,包括字符串处理、数组处理、数学运算、日期处理等方面。
字符串处理
substring()
substring()
方法用于提取字符串中指定位置的子字符串。
语法:string.substring(startIndex, endIndex)
示例:
const str = "Hello world!";
const subStr = str.substring(0, 5);
console.log(subStr); // 输出 "Hello"
slice()
slice()
方法用于从字符串中提取子字符串。
语法:string.slice(startIndex, endIndex)
示例:
const str = "Hello world!";
const subStr = str.slice(6, 11);
console.log(subStr); // 输出 "world"
数组处理
push()
push()
方法用于向数组末尾添加一个或多个元素。
语法:array.push(item1, item2, ..., itemX)
示例:
const arr = [1, 2, 3];
arr.push(4);
console.log(arr); // 输出 [1, 2, 3, 4]
pop()
pop()
方法用于从数组末尾删除一个元素。
语法:array.pop()
示例:
const arr = [1, 2, 3];
arr.pop();
console.log(arr); // 输出 [1, 2]
数学运算
Math.random()
Math.random()
方法返回一个随机数。
示例:
const randomNum = Math.random();
console.log(randomNum); // 输出一个0到1之间的随机小数,如 0.8635847466063578
Math.ceil()
Math.ceil()
方法向上取整,即返回大于或等于参数的最小整数。
示例:
const num = 12.5;
const ceilNum = Math.ceil(num);
console.log(ceilNum); // 输出 13
日期处理
Date()
Date()
构造函数用于创建一个日期对象。
语法:new Date()
示例:
const today = new Date();
console.log(today); // 输出当前日期和时间,如 Sat Aug 28 2021 15:11:32 GMT+0800 (中国标准时间)
getTime()
getTime()
方法返回从 1970 年 1 月 1 日至今的毫秒数。
示例:
const today = new Date();
const time = today.getTime();
console.log(time); // 输出一个大整数,如 1630143090048
结语
以上介绍的函数是 JavaScript 中比较常用的处理字符串、数组、数学运算和日期的函数。掌握这些函数可以更加高效地编写 JavaScript 代码。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:JS Common 2 之比较常用到的函数第1/3页 - Python技术站