Computer >> Máy Tính >  >> Lập trình >> Javascript

Hàm Array.prototype.map () của JavaScript

Hàm Array.prototype.map () của JavaScript được sử dụng để tạo một mảng mới với kết quả của hàm được gọi.

Cú pháp như sau -

arr.map(function callback(currentValue[, index[, array]])

Bây giờ chúng ta hãy triển khai phương thức Array.prototype.map () trong JavaScript -

Ví dụ

<!DOCTYPE html>
<html>
<body>
<h2>Demo Heading</h2>
<p>Click to display the abs() result...</p>
<button onclick="display()">Result</button>
<p id="test"></p>
<script>
   function display() {
      var arr = [1, -2, 3, 4, 5, -6, 7, 8, 9, 10];
      var res = arr.map(Math.abs);
      document.write(res);
   }
</script>
</body>
</html>

Đầu ra

Hàm Array.prototype.map () của JavaScript

Nhấp vào nút "Kết quả" ở trên -

Hàm Array.prototype.map () của JavaScript

Ví dụ

<!DOCTYPE html>
<html>
<body>
<h2>Demo Heading</h2>
<p>Click to round the numbers...</p>
<button onclick="display()">Result</button>
<p id="test"></p>
<script>
   var arr = [11.4, 12.9, 25.6, 88.9];
   document.getElementById("test").innerHTML = arr
   function display() {
      var res = arr.map(Math.round);
      document.getElementById("test").innerHTML = res
   }
</script>
</body>
</html>

Đầu ra

Hàm Array.prototype.map () của JavaScript

Nhấp vào nút "Kết quả" để làm tròn các số -

Hàm Array.prototype.map () của JavaScript