Answers for "js get arguments of function"

2

javascript get parameter

let params = {};
window.location.search.slice(1).split('&').forEach(elm => {
  if (elm === '') return;
  let spl = elm.split('=');
  const d = decodeURIComponent;
  params[d(spl[0])] = (spl.length >= 2 ? d(spl[1]) : true);
});

// https://example.com/?foo=bar&best%20food=D%C3%B6ner
params['foo'] // bar
params['best food'] // Döner
Posted by: Guest on June-11-2020
1

js unspecified parameters

function my_log(...args) {
     // args is an Array
     console.log(args);
     // You can pass this array as parameters to another function
     console.log(...args);
}
Posted by: Guest on October-24-2020
0

how to access any argument in javascript

function example() {
	console.log(arguments);
  	console.log(arguments[0]);
} // Console outputs an array of each argument with its value

example('hi', 'hello'); 
// Outputs: 
// ['hi', 'hello']
// 'hi'
Posted by: Guest on January-07-2021
0

argument functions in javascript

function hello(name) {
  alert("Hello " + name);
}
var name = "Person";
hello();
Posted by: Guest on September-13-2021

Code answers related to "js get arguments of function"

Code answers related to "Javascript"

Browse Popular Code Answers by Language