Answers for "how to make the object in javascript in which we are having our name of the object inside the object"

0

how to create an object in javascript

const person = {
  name: 'Anthony',
  age: 32,
  city: 'Los Angeles',
  occupation: 'Software Developer',
  skills: ['React','JavaScript','HTML','CSS']
}

//Use Template Literal to also log a message to the console
const message = `Hi, I'm ${person.name}. I am ${person.age} years old. I live in ${person.city}. I am a ${person.occupation}.`;
console.log(message);
Posted by: Guest on October-09-2020

Code answers related to "how to make the object in javascript in which we are having our name of the object inside the object"

Code answers related to "Javascript"

Browse Popular Code Answers by Language