{"id":20285516,"url":"https://github.com/iftekheraziz/mastering-javascript-objects","last_synced_at":"2026-04-06T21:31:23.586Z","repository":{"id":170302280,"uuid":"607161541","full_name":"IftekherAziz/Mastering-JavaScript-Objects","owner":"IftekherAziz","description":"Mastering JavaScript Objects","archived":false,"fork":false,"pushed_at":"2023-02-27T18:26:00.000Z","size":5,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"Main","last_synced_at":"2026-01-03T22:12:03.581Z","etag":null,"topics":["css3","es6-javascript","html5","javascript","modern-javascript"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/IftekherAziz.png","metadata":{"files":{"readme":"README.MD","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-02-27T12:50:57.000Z","updated_at":"2023-05-28T10:59:11.000Z","dependencies_parsed_at":null,"dependency_job_id":"31b7110b-c13e-4835-aff8-c6e8beae838f","html_url":"https://github.com/IftekherAziz/Mastering-JavaScript-Objects","commit_stats":null,"previous_names":["iftekheraziz/mastering-javascript-objects"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/IftekherAziz/Mastering-JavaScript-Objects","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IftekherAziz%2FMastering-JavaScript-Objects","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IftekherAziz%2FMastering-JavaScript-Objects/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IftekherAziz%2FMastering-JavaScript-Objects/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IftekherAziz%2FMastering-JavaScript-Objects/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/IftekherAziz","download_url":"https://codeload.github.com/IftekherAziz/Mastering-JavaScript-Objects/tar.gz/refs/heads/Main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IftekherAziz%2FMastering-JavaScript-Objects/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31491096,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-06T17:22:55.647Z","status":"ssl_error","status_checked_at":"2026-04-06T17:22:54.741Z","response_time":112,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css3","es6-javascript","html5","javascript","modern-javascript"],"created_at":"2024-11-14T14:27:13.194Z","updated_at":"2026-04-06T21:31:23.559Z","avatar_url":"https://github.com/IftekherAziz.png","language":"JavaScript","readme":"// Multiple wasys to create object:\n1. Object literal syntax - (Important)\n2. Object constructor\n3. Constructor Function\n4. ES6 class - (Important)\n5. Object.create()\n\n--\u003e What is object and what are the types of object?\n--\u003e What is method and constructor?\n--\u003e What is keys, values, entries , pair, delete, seal and freeze ?\n--\u003e What is obbject immutability? What is different between seal and freeze ?\n--\u003e When we use for of loop , for in loop ? Difference between them.\n--\u003e What are the 3 ways to read object properties?\n--\u003e What is distructaring of the object properties ?\n--\u003e Comapring objects, referential integrity, give example.\n--\u003e What is borrow method of the object properties?\n--\u003e Describe call, apply and bind methods.\n--\u003e What is the useage of this keyword in javascript?\n--\u003e What is window in javascript?\n\n\u003c!-- Quiz --\u003e\n\n1. Which one is not a way to create an object?\n- using JSON.stringify()\n\n2. Call methods accepts _____\n- this value and parameter separated by commas\n\n3. What are the purposes of Object.seal()?\n- Preventing new properties from being added\n\n4. How will you obtain the key-value pair from the nayok object?\nconst nayok = {name: ‘hero’, age:’28’, isMarried: false};\n\n- Object.entries(nayok)\n\n5. Why do we use the bind method?\n- To borrow method from another object\n\n6. How will you loop through all the properties of an object?\n- Using for in loop\n\n7. const obj ={a:1, b:7, c:3, length:2};\n   console.log(Object.keys(obj).length);\n\nWhat will be the output?\n- 4\n\n8. const obj1= {module: 35, video:2}; \n   const obj2= {module: 35, video:2};\n   console.log(obj1 === obj2);\n\n- false\n\n9. What would be the output of?:\n\nconst getGirlFriend= (name = \"chokina\")=\u003e\"name\"; \nconsole.log(getGirlFriend()); \n\n- name\n\n10. What is a window in JavaScript? Google and read carefully.\n- A global variable, window, representing the window in which the script is running .\n\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiftekheraziz%2Fmastering-javascript-objects","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiftekheraziz%2Fmastering-javascript-objects","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiftekheraziz%2Fmastering-javascript-objects/lists"}