Answers for "079 - Object – Introduction"

0

079 - Object – Introduction

/*
  Object
  - Intro and What Is Object
  - Testing Window Object
  - Accessing Object
*/

let user = {
  // Properties
  theName: "Osama",
  theAge: 38,
  // Methods
  sayHello: function () {
    return `Hello`;
  },
};

console.log(user.theName);
console.log(user.theAge);
console.log(user.sayHello());
Posted by: Guest on October-10-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language