Why am i getting the previous state of an object even after changing its state through a function ? [Solved] | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Why am i getting the previous state of an object even after changing its state through a function ? [Solved]

https://code.sololearn.com/WmbKfwFLlEK4/?ref=app

4th Jul 2021, 7:28 AM
Abhay
Abhay - avatar
3 Answers
+ 4
because 'this' where you modify state property is not the 'this' of the 'promise' object ^^ to keep 'this' as same object inside the inner function than in the 'promise' constructor, use arrow functions: this.resolve = arg => { /* ... */ } this.reject = arg => { /* ... */ } however, why making a fake 'promise' function rather than using the built-in 'Promise' constructor :o ? https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises
4th Jul 2021, 7:42 AM
visph
visph - avatar
+ 2
yes, that's how it works... if you use "strict mode", you would be alerted by an error, as 'this' default to null instead of window ;P another workaround, if you don't want to use arrow function (or if you don't declare function in same scope on 'this' reside) would be to explicitly bind the target function (does not work with arrow functions) with 'this': this.resolve = (function(arg) { /* ... */ }).bind(this) ;)
4th Jul 2021, 9:15 AM
visph
visph - avatar
0
visph ty , i just checked inside resolve function for "this == window" and it outputs true so basically it isn't bounded to object anymore and new state and value properties are created on window object ! I am trying to implement the original promise function to see if i can do so and then i will go through the details of how it is actually implemented .
4th Jul 2021, 9:06 AM
Abhay
Abhay - avatar