concat

Learn how to use the concat function in Notion formulas.

The concat() function concatenates (aka combines) its arguments. It accepts one or more list arguments, and outputs a single combined list.

concat(list)
concat(list, list, ...)

list.concat(list)
list.concat(list, ...)
Code language: JavaScript (javascript)

concat() can accept any number of arguments. If you give it no arguments, it’ll return an empty list.

concat(
  [1, 2, 3],
  [4, 5, 6]
)

/* Output: [1, 2, 3, 4, 5, 6] */
Code language: JavaScript (javascript)

See the Latest Activity formula in Ultimate Brain for a more robust example of concat() in action.

About the Author

My name is Thomas Frank, and I'm a Notion-certified writer, YouTuber, and template creator. I've been using Notion since 2018 to organize my personal life and to run my business and YouTube channel. In addition to this formula reference, I've created a free Notion course for beginners and several productivity-focused Notion templates. If you'd like to connect, follow me on Twitter.