Complete the following CodeWars exercises. Go to the webpages below and follow the instructions there.
Click "ATTEMPT" to test your solution.
Exercises:
-
Fix my Method function myFunction() { var myObject = { objProperty: "string", objMethod: function() { return myObject.objProperty; } }
return myObject; };
1.'You Don't Know JS: this & Object Prototypes' - Chapter 3, 'Objects'
- Eloquent JavaScript Chapter 4 - 'Data Structures: Objects and Arrays': https://eloquentjavascript.net/04_data.html
- Eloquent JavaScript Chapter 6 - 'The Secret Life of Objects': https://eloquentjavascript.net/06_object.html