Answers for "How to create object"

C#
1

how to create a object in javascript

var a = {
name: "aakash",
  age:30
}
Posted by: Guest on May-16-2020
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
0

how to create a object in javascript

var about = {
  name:"lanitoman",
  age:1023,
  isHeProgrammer:true
}
Posted by: Guest on November-24-2020

Code answers related to "How to create object"

C# Answers by Framework

Browse Popular Code Answers by Language