mirror of
https://github.com/github/codeql.git
synced 2025-12-25 05:06:34 +01:00
5 lines
74 B
JavaScript
5 lines
74 B
JavaScript
var arr = [1,2,3];
|
|
|
|
function extend(others) {
|
|
arr = arr.concat(others);
|
|
} |