Sunday, April 5, 2020

how to access arguments with out accepting arguments in javascript

function concatenateAll() {
  console.log(arguments);
}
concatenateAll("venkat","test","ch");

No comments:

Post a Comment

function declaration, expression and call/invoke/execution

  The  function  declaration defines a function with the specified parameters. The  function   keyword can be used to define a function ins...