“... args javascript” Code-Antworten

JS nicht spezifizierte Parameter

function my_log(...args) {
     // args is an Array
     console.log(args);
     // You can pass this array as parameters to another function
     console.log(...args);
}
Bright Booby

Argumente Objekt in JavaScript

var sum = 0;
function addAll(){
    for (var i = 0; i<arguments.length; i++){
        sum+=arguments[i];
    }
    console.log(sum);
}

addAll(1, 2, 3, 4, 5, 6, 7, 8, 9,10); //we can provide inifite numbers as argument
Ainul Sakib

... args javascript

function calculation(a,b,operation){

return a operation b;
  
}

var result = calculation('2','4','+');
console.log(result);
warner smith

Ähnliche Antworten wie “... args javascript”

Fragen ähnlich wie “... args javascript”

Weitere verwandte Antworten zu “... args javascript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen