我需要使用循环传递一些方法参数。像这样:
array.forEach(element => {
// Pseudo Code.
// Add the parameter value to the method call on each loop.
myMethod().parameters.append(element)
});
// OR -->
let params;
array.forEach(element => {
// Pseudo Code.
params.append(element);
});
myMethod(params)
在Typescript / JavaScript中有可能吗?
答案 0 :(得分:2)