百度 所幸(世界再大,我走不出你)词曲:阿肆编曲:丁磊、荷画吉他:丁磊合声:阿肆、陈晓磊还以为自己真的刀枪不入了一见到你就哭了还以为自己真的无所畏惧了一见到你就脆弱逞强太久快忘了我也曾颤抖这些故事我是如何一件件经过伪装太久快忘了我真实的感受直到你又出现在我的路口当我像个风筝被风吹得忽近忽远你手中紧握我的线当我像片树叶疲倦在阴霾的秋天你是泥土为我遮掩当我渐行渐远无论前路多么艰难危险因为你世界再辽阔我不怕坠落你会托着我当我像个风筝被风吹得忽近忽远你手中紧握我的线当我像片树叶疲倦在阴霾的秋天你是泥土为我遮掩当我渐行渐远无论前路多么艰难危险因为你世界再辽阔我不怕世界再大我走不出你还以为自己真的很难快乐了一见到你就笑了
Arguments are values (primitive or object) passed as input to a function. Do not confuse arguments with parameters, which are the names used in the function definition to refer to the arguments.
For example:
js
const argument1 = "Web";
const argument2 = "Development";
example(argument1, argument2); // passing two arguments
// This function takes two values
function example(parameter1, parameter2) {
console.log(parameter1); // Output = "Web"
console.log(parameter2); // Output = "Development"
}
The argument order within the function call should be the same as the parameters order in the function definition.
js
const argument1 = "foo";
const argument2 = [1, 2, 3];
example(argument1, argument2); // passing two arguments
// This function takes a single value, so the second argument passed is ignored
function example(parameter) {
console.log(parameter); // Output = foo
}
See also
- Difference between parameter and argument
arguments
JavaScript object- Related glossary terms: