Read more about Liquid:

cat

All posts

Here's the page title: Liquid Playground

Put variables in {{ }}

{{ }} indicate an object

The current time is 2023-10-01 04:09:41 +0000

```
const array1 = ['a', 'b', 'c'];
const array2 = ['c', 'd'];

const combinedArray = [...array1, ...array2];
console.log(combinedArray);
```
1
2
3
4
5
const array1 = ['a', 'b', 'c'];
const array2 = ['c', 'd'];

const combinedArray = [...array1, ...array2];
console.log(combinedArray);