diff --git a/Practice/03_07/script.js b/Practice/03_07/script.js index 9a82c281..5c2b7e07 100755 --- a/Practice/03_07/script.js +++ b/Practice/03_07/script.js @@ -7,3 +7,13 @@ * - Find an object that has another object inside of it to create a nested object. * - Test your objects in the browser console by accessing the entire object and its specific properties. */ +const backpack { + color: "blue", + size: "large", + straplength: { + left = 25, + right = 30, + } + numpockets: 4, +} +console.log(backpack);