关键词

JS Common 2 之比较常用到的函数

JS Common 2 之比较常用到的函数

在JavaScript中,有一些函数几乎在每个项目中都会用到,这些函数涵盖了数组、字符串等数据类型的处理,本文将对这些函数进行详细讲解。

Array.prototype.map()

定义

map()方法创建一个新数组,其结果是该数组中的每个元素都调用一个提供的函数后返回的结果。

语法

array.map(callback[, thisArg])

参数

  • callback:生成新数组元素的函数,使用三个参数:
    • currentValue:数组中正在处理的当前元素;
    • index(可选):正在处理的当前元素的索引;
    • array(可选):调用 map() 的数组。
  • thisArg(可选):执行 callback 函数时的 this 值。

返回值

一个新数组,每个元素是调用回调函数而返回的结果。

示例

const numbers = [1, 2, 3, 4];
const doubles = numbers.map((num) => num * 2);
console.log(doubles); // [2, 4, 6, 8]

String.prototype.trim()

定义

trim() 方法从一个字符串的两端删除空白字符。

语法

str.trim()

返回值

调用该方法生成的新字符串。

示例

const str = '   hello world   ';
const trimmedStr = str.trim();
console.log(trimmedStr); // 'hello world'

本文链接:http://task.lmcjl.com/news/8313.html

展开阅读全文