mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
16 lines
459 B
JavaScript
16 lines
459 B
JavaScript
|
var arguments = [];
|
||
|
console.log(arguments[0]);
|
||
|
(function () {
|
||
|
console.log(arguments[1], arguments["1"], arguments["foo"]);
|
||
|
})("bar", 42);
|
||
|
(function (a, b) {
|
||
|
console.log(arguments[1], arguments["1"], arguments["foo"]);
|
||
|
})("bar", 42);
|
||
|
(function (arguments) {
|
||
|
console.log(arguments[1], arguments["1"], arguments["foo"]);
|
||
|
})("bar", 42);
|
||
|
(function () {
|
||
|
var arguments;
|
||
|
console.log(arguments[1], arguments["1"], arguments["foo"]);
|
||
|
})("bar", 42);
|