顯示具有 JS學習之路外傳 標籤的文章。 顯示所有文章
顯示具有 JS學習之路外傳 標籤的文章。 顯示所有文章

2020年1月8日 星期三

JS學習: This


本篇引用至 What-is-THIS-in-JavaScript ,主要為自己紀錄加深印象使用



This的定義

ECMAScript 對於 This 的定義為:

「The this keyword evaluates to the value of the ThisBinding of the current execution context.」

MDN 對於 This 的定義為:

「In most cases, the value of this is determined by how a function is called.」
 在大多數的情況下,this的值會由該 function 當時如何被呼叫而決定的


JS學習:函數進階使用技巧

代理函數物件 根據不同的條件,代理函數物件可以指向不同的函數來實現動態改變,如下: function femaleFunction() { console.log('female'); } function maleFunction() { ...