this in Function Calls

Marius Schulz
InstructorMarius Schulz
Share this video with your friends

Social Share Links

Send Tweet
Published 6 years ago
Updated 5 years ago

In most cases, the value of a function's this argument is determined by how the function is called. This lesson explains what this refers to when we call plain function. Marius points out how functions behave differently in strict and non-strict mode. "use strict" mode defaults this to undefined and prevents us from assigning values to undefined. We must call functions as a constructor to assign their this value correctly.

Instructor: [00:00] In most cases, the value of a function's this argument is determined by all the function is called. That means, the this value may be different each time the function is executed. Let's look at a plain and decorated function call.

[00:15] If we're not in strict mode, a plain function call sets the function's this value to the global object. If we're in strict mode, a plain function call sets the function's this value to undefined. It doesn't matter whether are not the cause side is in strict mode. It all depends and whether or not the function is in strict mode.

[00:42] The distinction will become relevant for you, if for example, your code is written in strict mode, but some third party library that you're using is not. Let's now see, why it makes sense for the this value to be undefined in strict mode.

[01:01] Here is a simple person function that accepts two parameters and initializes two properties. Note that this piece of code is not in strict mode. If we invoke the person function using a plain function call, the result probably isn't what we intended. The person variable holds the value undefined.

[01:25] Since we're not in strict mode, this within the function refers to the global object. Therefore, we assigned first name and last name to global. This is unfortunate, because it's almost never the desired behavior. Let's contrast this with strict mode where the this value within the function is set to undefined.

[01:48] Now, we get an error when invoking the person function using a plain function call, because we cannot assign properties to undefined. That prevents us from accidentally creating global variables, which is a good thing. The uppercase function name is a hint to us. That was supposed to call it as a constructor. We do that using the new operator.

[02:10] Now, we correctly construct a new person, and we also no longer pollute the global object with the first name and last name properties.

lotfi harrabi
lotfi harrabi
~ 6 years ago

there's a typo in the transcript: "It doesn't matter whether are not the cause side is in strict mode. "

should be "It doesn't matter whether or not the call site is in strict mode."

Sosyo Plus Bilgi Bil. Tekn. Dan. Hiz. A.S. SULTAN SELİM MAHALLESİ LİBADİYE SOKAK No:3/1 KAĞITHANE/İSTANBUL
Sosyo Plus Bilgi Bil. Tekn. Dan. Hiz. A.S. SULTAN SELİM MAHALLESİ LİBADİYE SOKAK No:3/1 KAĞITHANE/İSTANBUL
~ 6 years ago

http://prntscr.com/izvmmd even i am not in the use strict mode, it is not assigning firstName and last Name to the global scope. Just adding this new keyword before Person object prevented defining variables to the global scope.

Markdown supported.
Become a member to join the discussionEnroll Today