Untitled
user_7147158
plain_text
a year ago
741 B
10
Indexable
// 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()
Editor is loading...
Leave a Comment