mirror of https://github.com/boa-dev/boa.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
94 B
8 lines
94 B
4 years ago
|
(function () {
|
||
4 years ago
|
let testArr = [1, 2, 3, 4, 5];
|
||
4 years ago
|
|
||
4 years ago
|
let res = testArr[2];
|
||
4 years ago
|
|
||
4 years ago
|
return res;
|
||
4 years ago
|
})();
|