how to make an object in javascript
let myDog = {
legs: value
}
console.log(myDog);
/*Doesn't have to be a Dog it can be anyting you want*/
how to make an object in javascript
let myDog = {
legs: value
}
console.log(myDog);
/*Doesn't have to be a Dog it can be anyting you want*/
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);
js create object with properties
function Car(make, model, year) {
this.make = make;
this.model = model;
this.year = year;
}
how to create a object in javascript
var a = {
name: "aakash",
age:30
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us