javascript System. out. println();{ }; vs代码说在结束括号前放置分号是正确的语法为什么?

g6baxovj  于 2023-05-27  发布在  Java
关注(0)|答案(1)|浏览(100)

UpdateRegistredUsers(newUser);{ }; vs代码说在结束括号前放分号是正确的语法为什么?
我把这个分号后,关闭括号,但对代码说,这是错误的语法,应该把前关闭括号,为什么

sg24os4d

sg24os4d1#

你的问题脱离了上下文,所以很难理解你的问题。这是你要找的吗你以前在哪里搜索过,尝试过什么?这是使用函数的起点!
这是不可能给予你更多的代码,如果你只是说,有一个问题,在你的语法在UpdateRegistredUsers(newUser);{ };,所以请更新您的问题,并告诉我们更多关于您的问题?!
转到解释如何编写函数的链接:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Functions

//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);

相关问题