Skip to content

Instantly share code, notes, and snippets.

@AkashRajvanshi
Created November 2, 2019 13:52
Show Gist options
  • Select an option

  • Save AkashRajvanshi/f40ac110488e74c329f8fe3ee23797f5 to your computer and use it in GitHub Desktop.

Select an option

Save AkashRajvanshi/f40ac110488e74c329f8fe3ee23797f5 to your computer and use it in GitHub Desktop.
function sayName (firstName, lastName) {
console.log(`${firstName} ${lastName}`)
}
sayName.apply(null, ['Akash', 'Rajvanshi']) // Akash Rajvanshi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment