Answers for "types of objects javascript"

0

javascript object type

console.log(typeof 42);
// expected output: "number"

console.log(typeof 'hello');
// expected output: "string"
Posted by: Guest on October-02-2021
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 "types of objects javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language