Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.

Latest commit

 

History

History
33 lines (22 loc) · 1.1 KB

File metadata and controls

33 lines (22 loc) · 1.1 KB

CodeWars Exercises

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; };

  • Regular Ball Super Ball

Reading

1.'You Don't Know JS: this & Object Prototypes' - Chapter 3, 'Objects'

  1. Eloquent JavaScript Chapter 4 - 'Data Structures: Objects and Arrays': https://eloquentjavascript.net/04_data.html
  2. Eloquent JavaScript Chapter 6 - 'The Secret Life of Objects': https://eloquentjavascript.net/06_object.html

Viewing

  1. Methods and 'this' keyword in JavaScript
  2. Modern JavaScript Tutorial #5 - Objects