Skip to content

Instantly share code, notes, and snippets.

View ashishpaul99's full-sized avatar

GADDALA ASHISH ashishpaul99

  • KHAMMAM,TELANGANA,INDIA
View GitHub Profile
@ashishpaul99
ashishpaul99 / apply.js
Last active January 23, 2025 09:20
call, apply, bind method
let printFullName=function([hometown,state]){
console.log(this.firstname+" "+this.lastname+" from "+hometown+" "+state);
}
let name1={
firstname:"Ashish",
lastname:"Paul",
}
let name2={