mirror of
https://github.com/github/codeql.git
synced 2026-04-08 08:34:02 +02:00
5 lines
74 B
JavaScript
5 lines
74 B
JavaScript
var arr = [1,2,3];
|
|
|
|
function extend(others) {
|
|
arr = arr.concat(others);
|
|
} |