Untitled

 avatar
user_7147158
plain_text
19 days ago
741 B
3
Indexable
Never
// let detail = {
//   name: "Ayush",
//   city: "Banglore",
//   address: "india",
//   getFullDetail: function () {
//     console.log(this);
//   },
// };
// detail.getFullDetail()
// let detail1 = {
//     name: "Ayush",
//   city: "Banglore",
//   address: "india",
//   getFullDetail: ()=>{
//     console.log(this)
//   }
// }
// console.log(this)
// detail1.getFullDetail()
// console.log()

// simple function
// function hello1() {}
// arrow function
// const hello2 = () => {};


// anoymous function
// (function (){
//     console.log("anoymous")
// }())


// var a1 = 10;
// var a2 = 20;

// function hello(){
//     var temp1 = "abcd";
//     console.log(temp1);
// }

// hello()


Leave a Comment