lodash 库的用法
<!DOCTYPE html> <html> <head> <title>Lodash Example</title> </head> <body> <script src="https://cdn.jsdelivr.net/npm/lodash@4.17.21/lodash.min.js"></script> <script > var array = [1]; var other = _.concat(array, 2, [3], [[4]]); console.log(other); // => [1, 2, 3, [4]] console.log(array); // => [1] </script> </body> </html>

浙公网安备 33010602011771号