*Arrays declaration and Intialization *
let arr =[1,2,3,4,"pushan","chandresh","aditi","chetna"];
console.log(arr);
Objects declaration and Initialization
let myObj1={
name2:"Verma",
arr:["aditi","chetna","chandresh","pushan"],
exercise:true,
galatkaam:null
}
let myObj ={
name1:"pushan",
arr:[1,2,3,4,5],
sach:true,
myObj1
}
console.log(myObj);
Top comments (0)