xxxxxxxxxx
A value passed as an argument to an OpenGL command. Sometimes one of the values passed by reference to an OpenGL command.
xxxxxxxxxx
$ curl -i "https://api.github.com/repos/vmg/redcarpet/issues?state=closed"
xxxxxxxxxx
$ curl -i -u username -d '{"scopes":["repo_deployment"]}' https://api.github.com/authorizations
xxxxxxxxxx
function func1(a, b, c) {
console.log(arguments[0]);
// expected output: 1
console.log(arguments[1]);
// expected output: 2
console.log(arguments[2]);
// expected output: 3
}
func1(1, 2, 3);