I've learned python and right now I am beginning to learn javascript. I've got a question about Javascript objects.
var superSecureTerminal = {
allUserNames: [],
_username: "",
...}
Are the allUserNames and _username arguments of the object? In python would it be similar to
def superSecureTerminal(allUserNames, _username):