VIDEO 18 javascript
Tue Oct 29 2024 18:17:43 GMT+0000 (Coordinated Universal Time)
Saved by
@E23CSEU1151
///////////////****** OBJECTS IN JS (PART 3) ********////////////////////
/// de structuring data
const course ={
coursename:"udemy js ",
price: "999",
courseIntructor: "hitesh"
}
const {courseIntructor: Inst} = course // getting value of courseInstructor from course and refreing it from Inst key
console.log(Inst); // hitesh
///////////////////////////**** JSON API *******////////////////
/// this is Json
/*{
"name": "om",
"coursename": "js",
"price": "free"
}*/
// this Json array
[
{},
{},
{}
]
content_copyCOPY
Comments