//here you define an empty Array out of the function :
let registredUsers=[]
//here you write your function that pushes the registredUsers Array with a new user:
function updateRegistredUsers(newUser){
registredUsers.push(newUser);
};
// Here you call your function and each time you call it a new user is added to registredUsers :
updateRegistredUsers("Graham Chapman");
// now log the result of the Array registredUsers
console.log(`users = ${registredUsers}`);
// registredUsers is now ["Graham Chapman"]
updateRegistredUsers("Terry Jones");
// now log the result of the Array registredUsers
console.log(`users = ${registredUsers}`);
// registredUsers is now ["Graham Chapman","Terry Jones"]
其实这个函数只是一个例子。这是相同的做:
let registredUsers = [];
registredUsers.push("Graham Chapman");
registredUsers.push("Terry Jones");
console.log(registredUsers);
1条答案
按热度按时间sg24os4d1#
你的问题脱离了上下文,所以很难理解你的问题。这是你要找的吗你以前在哪里搜索过,尝试过什么?这是使用函数的起点!
这是不可能给予你更多的代码,如果你只是说,有一个问题,在你的语法在
UpdateRegistredUsers(newUser);{ };
,所以请更新您的问题,并告诉我们更多关于您的问题?!转到解释如何编写函数的链接:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Functions
其实这个函数只是一个例子。这是相同的做: