“fungsi normal vs fungsi panah” Kode Jawaban

fungsi normal vs fungsi panah

// Normal Function
let add = function (num1, num2) {
return num1 + num2;
}

// Arrow Function
let add = (num1, num2) => num1 + num2;
madhav

Perbedaan antara fungsi normal dan fungsi panah

//* main difference is arrow functions do not have their own this
let user = {
  name: "HEllo world",
  functTest() {
    console.log("----functTest---", this.name) // HEllo world
  },
  arrowTest: () => { 
    console.log("----arrowTest----", this.name) // undefined
  }
}
user.functTest()
user.arrowTest()
Abhishek

Jawaban yang mirip dengan “fungsi normal vs fungsi panah”

Pertanyaan yang mirip dengan “fungsi normal vs fungsi panah”

Lebih banyak jawaban terkait untuk “fungsi normal vs fungsi panah” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya