“Argumen fungsi JS” Kode Jawaban

JS Parameter yang tidak ditentukan

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

Argumen Objek dalam 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

Argumen fungsi JS

                          An Example of a function argument


function printValue(someValue) {
    console.log('The item I was given is: ' + someValue);
}

printValue('abc'); // -> The item I was given is: abc
Doubtful Dunlin

Parameter fungsi JavaScrip

function printValues(value1, value2) {
    console.log(value1 + ', ' + value2);
}

printValues('abc', 123); // -> abc, 123
Doubtful Dunlin

Jawaban yang mirip dengan “Argumen fungsi JS”

Pertanyaan yang mirip dengan “Argumen fungsi JS”

Lebih banyak jawaban terkait untuk “Argumen fungsi JS” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya