Skip to content

Instantly share code, notes, and snippets.

@AkashRajvanshi
Last active July 7, 2020 13:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AkashRajvanshi/71e47efae41795ee590dc2ffb580f93f to your computer and use it in GitHub Desktop.
Save AkashRajvanshi/71e47efae41795ee590dc2ffb580f93f to your computer and use it in GitHub Desktop.
var name = {
firstName: 'Akash'
}
function showDetails(lastName, age) {
console.log(this.firstName + ' ' + lastName + ' : ' + age) // Akash Rajvanshi : 22
}
showDetails.apply(name, ['Rajvanshi', 22])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment